DeskCrew MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@DeskCrew MCP ServerFind open tickets about billing and draft a reply to the latest one"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
DeskCrew MCP Server
Agent-native helpdesk. AI agents run real support work over MCP and pay per action in USDC via x402. No account, no API key.
·
· MCP Registry:
io.deskcrew/support · deskcrew.io
DeskCrew is a multi-tenant support helpdesk built for AI agents. Humans get a normal dashboard, shared inbox, and email, while agents get a paid MCP door. An agent connects over the Model Context Protocol, lists the available tools, and runs real support work: search and create tickets, search the knowledge base, draft and post replies, triage and resolve threads, paying per action in USDC.
Two ways in
Anonymous, pay per action. No account, no API key. Read tools are free; action tools return
HTTP 402and you pay per call in USDC (x402). Use any desk's public door at/api/mcp/{tenant}. This is the section directly below.Free credential, run your own desk. Create a free account, mint an
mcp_credential, and reach your own desk's tickets on/api/mcpwith no per-call payment. New credentials are draft-capped: an agent prepares a reply, a human approves the send. See Manage your own content.
Either way, every send-tier action lands in a human approval queue until it's explicitly trusted, an agent can never email your customers on day one.
Related MCP server: x402-mcp
Connect
Remote, streamable-HTTP MCP endpoint (nothing to install):
https://deskcrew.io/api/mcp/{tenant}Client config (Claude Desktop, Cursor, or any MCP client):
{
"mcpServers": {
"deskcrew": {
"type": "streamable-http",
"url": "https://deskcrew.io/api/mcp/YOUR_TENANT_SLUG"
}
}
}Poke the public demo tenant. initialize and tools/list are free:
curl -s https://deskcrew.io/api/mcp/deskcrew \
-H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'Pay-per-action (x402)
Read tools are free. Action tools are priced: when an agent calls one, the server replies
HTTP 402 with payment requirements (the amount in USDC + every accepted network). The agent pays
and retries the identical call with an X-PAYMENT header, the x402 standard.
No account, no API key, no human in the loop.
Settlement is in USDC across Base, Polygon, Avalanche, Sei, and Solana. Terms are advertised at:
https://deskcrew.io/.well-known/x402: platform discoveryhttps://deskcrew.io/api/mcp/{tenant}/manifest: per-tenant terms
Tools
Tool | Tier | Price |
| read | free (anonymous) |
| read | free, API key required (private ticket data) |
| read | $0.02 |
| draft | $0.02 |
| draft | $0.03 |
| draft | $0.06 |
| send | $0.06 |
Send-tier tools degrade to a draft (deposited in a human approval queue) until a paying wallet earns trusted reputation, so an anonymous agent can never email your customers on day one.
Manage your own content (authenticated)
The anonymous per-tenant door (/api/mcp/{tenant}) is read/draft only. It deliberately
cannot write your knowledge base or changelog, so a prompt-injected stranger can never
edit your docs. Content writes live on a separate authenticated endpoint:
{
"mcpServers": {
"deskcrew": {
"type": "streamable-http",
"url": "https://deskcrew.io/api/mcp",
"headers": { "Authorization": "Bearer mcp_your_credential" }
}
}
}Mint the mcp_ credential in the dashboard → Agents, then enable the content tools on it
(set create_kb / update_kb / create_changelog to draft. They are never granted by
default). That unlocks three write tools alongside the read tools:
Tool | Inputs |
|
|
|
|
|
|
Only published KB articles are retrieved by agents; publishing a changelog entry fires the
changelog.published webhook.
REST equivalents
Prefer plain HTTP? Mint a dk_ API key in the dashboard → API Keys with the scopes you
need: kb:read, kb:write, changelog:write, and hit:
GET/POSThttps://deskcrew.io/api/v1/kbGET/PATCH/DELETEhttps://deskcrew.io/api/v1/kb/:idGET/POSThttps://deskcrew.io/api/v1/changelog·GET/PATCH/DELETE…/changelog/:id
curl -X POST https://deskcrew.io/api/v1/kb \
-H "Authorization: Bearer dk_your_key" \
-H "Content-Type: application/json" \
-d '{"title":"Getting started","body":"Write your article here.","status":"published"}'Same field limits as the MCP tools. mcp_ and dk_ are separate credential families,
an API key won't open the MCP door, and vice versa.
How it fits together
Humans and agents work the same desk. A human reviews tickets in the dashboard and replies by email; an agent hits the MCP door, pays per call, and its drafts land in the same approval queue. The knowledge base an admin publishes both answers human visitors (via an embeddable widget) and grounds the agent tools.
Links
Homepage: https://deskcrew.io
MCP Registry:
io.deskcrew/supportx402 manifest: https://deskcrew.io/.well-known/x402
llms.txt: https://deskcrew.io/llms.txt
License
The contents of this repository (the skill, the example configuration, and this documentation) are released under the MIT License. Copy them, adapt them, ship them.
That covers this repository only. DeskCrew itself is a hosted commercial service, governed by its own terms at https://deskcrew.io, and "DeskCrew" is a trademark of its owner. Connecting to the service still needs an account (a free one is enough) or an x402 payment.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceEnables AI-powered customer support with real-time access to CRM, ticketing, and communication tools via MCP, supporting context-aware conversations and automated actions.Last updatedApache 2.0
- AlicenseAqualityCmaintenanceEnables AI agents to discover, inspect, and pay for paid HTTP and MCP services using USDC on Solana with a self-custodial wallet.Last updated4475Apache 2.0
- Flicense-qualityBmaintenanceEnables AI assistants to analyze IT support tickets, categorize urgency, suggest responses, and retrieve statistics via MCP tools.Last updated
- Alicense-qualityBmaintenanceAI-powered helpdesk management via Model Context Protocol. Connect any MCP-compatible assistant to your support workspace.Last updated14MIT
Related MCP Connectors
Connect any AI agent to 11+ social platforms: schedule, publish & track posts via hosted MCP.
Native Solana staking for AI agents. 26 MCP tools, one-shot signing, webhooks.
AI agent marketplace: agents buy, sell, and collaborate on digital products via MCP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/webmilmind1/deskcrew-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server