Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"zendesk": {
"env": {
"ZENDESK_EMAIL": "steven.whitehead@webscale.com.au",
"ZENDESK_API_TOKEN": "your-api-token",
"ZENDESK_SUBDOMAIN": "employmenthero1713155541"
},
"args": [
"run",
"--project",
"C:\\projects\\ZendeskMcpServer\\ZendeskMcpServer.csproj"
],
"command": "dotnet"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A lightweight C# MCP (Model Context Protocol) server that provides access to Zendesk Help Center articles in Cursor AI.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity / communication
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
MCP Security Weekly
Get CVE alerts and security updates for ZendeskMcpServer and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A lightweight C# MCP (Model Context Protocol) server that provides access to Zendesk Help Center articles in Cursor AI.
cd ZendeskMcpServer
dotnet build --no-restore
You'll need:
yourcompany from yourcompany.zendesk.com)The server supports two modes: stdio mode (default) and HTTP server mode. Choose the one that fits your needs.
This mode runs the server as a process that Cursor launches directly. Each user needs to configure their own credentials.
Note: You can also create an appsettings.json file with your credentials, and the server will use them if environment variables aren't set. However, for stdio mode, it's typically easier to configure credentials directly in Cursor's MCP settings.
{
"mcpServers": {
"zendesk": {
"command": "dotnet",
"args": [
"run",
"--project",
"C:\\projects\\ZendeskMcpServer\\ZendeskMcpServer.csproj"
],
"env": {
"ZENDESK_SUBDOMAIN": "employmenthero1713155541",
"ZENDESK_EMAIL": "steven.whitehead@webscale.com.au",
"ZENDESK_API_TOKEN": "your-api-token"
}
}
}
}
Replace:
your-subdomain with your actual Zendesk subdomainyour-email@example.com with your Zendesk emailyour-api-token with your API tokenThis mode runs the server as a web service that multiple users can connect to. The server itself has the credentials configured, so users only need to specify the URL.
Server Setup:
dotnet run --project ZendeskMcpServer.csproj -- --http
Or set the environment variable:
export MCP_SERVER_MODE=http
dotnet run --project ZendeskMcpServer.csproj
Option 1: Using a config file (Recommended)
Create an appsettings.json file in the project directory:
{
"Zendesk": {
"Subdomain": "your-subdomain",
"Email": "your-email@example.com",
"ApiToken": "your-api-token"
},
"Server": {
"Port": "8080",
"Url": "http://0.0.0.0:8080"
}
}
Copy appsettings.json.example to appsettings.json and fill in your values:
cp appsettings.json.example appsettings.json
# Edit appsettings.json with your credentials
Option 2: Using environment variables
export ZENDESK_SUBDOMAIN="your-subdomain"
export ZENDESK_EMAIL="your-email@example.com"
export ZENDESK_API_TOKEN="your-api-token"
export PORT="8080" # Optional, defaults to 8080
Note: Environment variables take precedence over config file values if both are set.
http://0.0.0.0:8080 (or your specified port)Client Configuration:
In Cursor, configure the MCP server to connect via HTTP:
{
"mcpServers": {
"zendesk": {
"type": "http",
"url": "https://zendeskmcpserver/"
}
}
}
Note: Replace https://zendeskmcpserver/ with your actual server URL. The server must be accessible from where Cursor is running.
After adding the configuration, restart Cursor to load the MCP server.
Once configured, you can ask Cursor to search your Zendesk articles: