Getting Started with DeskDirector
DeskDirector Portals
Browser Support
What is the DeskDirector Admin Portal?
What is the DeskDirector Tech Portal
What is the DeskDirector Client Portal?
Desktop Portal
Managing Your Account
Admin Essentials
DeskDirector Features Overview
Logging in to DeskDirector
User Profiles & Profile Pictures
Managing Tickets with DeskDirector
Office Hours
How Searching Works
Embedding Help Page Media
Get started with the DeskDirector Power Automate Connector
Getting Started with the Solution Library
Features
Portal Customization
Forms
Service Catalogue
Communication
Email Connectors
Notifications
Email Notifications
Actionable Messages for Emails
Real-Time Chats
Email Template Engine
Surveys
Broadcasts
Generative AI
Setting up AI Service Providers
Microsoft Foundry for DeskDirector
Knowledge Bases for AI Assistants
Custom Tools for AI Assistants
DeskDirector with Generative AI
AI Assistants in DeskDirector
Ticket Summary for TECH Portal
MCP Server Setup Guide
Advanced
Login & Authentication
Dashboard
Accounts
Contacts
Contact Groups
Approvals
Tags
Custom Domains
Task Lists
File Storage
The Learning Center
Portal Deep Linking
Auditing & Analytics
Microsoft Power Automate
Actions
Solutions
Featured Solution: Teams Ticket Discussion
Power Automate Template Gallery
Featured Solution: Ticket Briefing
Power Automate Administration
DeskDirector Power Platform Connector Reference
Power Automate Connector - Setting up your first flow
Microsoft Teams App
Introducing the DeskDirector for Microsoft Team App
Installing the Microsoft Teams App (Client Mode)
Installing the Microsoft Teams App (TECH Mode)
Setting up Tags for Teams Discussions (TECH Portal)
Branding the DeskDirector Teams App
DeskDirector Teams App Notifications
Contact Groups Integration with Microsoft Teams
Setting up Content Security Policy (CSP)
Advanced topic: Setting up Tech & Client Mode in the same tenancy
Integrating Microsoft Teams with DeskDirector Tech Portal
Smart Alerts for TECH Users
Integrations
Glossary
Security
Troubleshooting
Troubleshooting via Web Developer Tools
Desktop Portal - Common Issues
Contact Impersonation
Approvals - Common Issues
Microsoft Teams App - Common Issues
Email & Email Delivery - Common Issues
Login & Authentication - Common Issues
DeskDirector Desktop App - Installation Issues
Permissions & Access - Common Issues
Contact DeskDirector Support
Troubleshooting DeskDirector Connection Issues
- All Categories
- Features
- Generative AI
- MCP Server Setup Guide
MCP Server Setup Guide
Updated
by Helpdocs Admin
This document describes how to configure and connect to the DeskDirector Tokity MCP server.
Overview
The MCP (Model Context Protocol) server uses an authentication system that validates incoming requests via HTTP headers before allowing tool invocations.
Server URL
https://ddmcpserver.azurewebsites.net/runtime/webhooks/mcp
Required Headers
All requests to the MCP server must include the following headers:
Header | Required | Description |
| Yes | The base URL of the API host (must be a valid absolute URI) |
| Yes | The API key or authentication token |
| Yes | The agent ID (must be a valid integer) |
Header Details
dd-host
The host URL for the API. This must be a valid absolute URI.
Example:
dd-host: https://demo.deskdirector.com
dd-api-key
The API key used for authentication. Supports two formats:
- With authentication scheme (e.g.,
Basic <credentials>):dd-api-key: Basic Z2xvYmFsOjVPTnJSZWxJQm...
- Without scheme (defaults to
Basic):dd-api-key: your-api-key-here
dd-agent
The numeric identifier for the agent making the request.
Example:
dd-agent: 123
Error Responses
HTTP Status | Condition |
| Missing or invalid |
| Missing or invalid |
Example Configuration
Claude Desktop
Add the following to your Claude Desktop configuration (claude_desktop_config.json):
{
"mcpServers": {
"deskdirector": {
"url": "https://ddmcpserver.azurewebsites.net/runtime/webhooks/mcp",
"headers": {
"dd-host": "https://demo.deskdirector.com",
"dd-api-key": "Basic your-api-key-here",
"dd-agent": "123"
}
}
}
}
VS Code / Copilot
Add the following to your VS Code settings or MCP configuration:
{
"mcp": {
"servers": {
"deskdirector": {
"type": "sse",
"url": "https://ddmcpserver.azurewebsites.net/runtime/webhooks/mcp",
"headers": {
"dd-host": "https://demo.deskdirector.com",
"dd-api-key": "Basic your-api-key-here",
"dd-agent": "123"
}
}
}
}
}
Troubleshooting
401 Unauthorized
- Verify that both
dd-hostanddd-api-keyheaders are present - Ensure
dd-hostis a valid absolute URI (e.g.,https://demo.deskdirector.com) - Check that
dd-api-keyis not empty
403 Forbidden
- Verify that the
dd-agentheader is present - Ensure
dd-agentcontains a valid integer value