Skip to main content
ClaudeWave

Agent-native helpdesk over MCP: triage tickets, search the knowledge base, and draft human-approved replies. Free credential or anonymous x402 (USDC).

MCP ServersRegistry oficial2 estrellas0 forksMITActualizado 6d ago
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/webmilmind1/deskcrew-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "deskcrew-mcp": {
      "command": "node",
      "args": ["/path/to/deskcrew-mcp/dist/index.js"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/webmilmind1/deskcrew-mcp and follow its README for install instructions.
Casos de uso

Resumen de MCP Servers

# DeskCrew MCP Server

> Agent-native helpdesk. AI agents run real support work over MCP and pay per action in USDC via [x402](https://x402.org). No account, no API key.

[![Listed on Glama](https://img.shields.io/badge/Glama-listed-6366f1?labelColor=1e1b4b)](https://glama.ai/mcp/connectors/io.deskcrew/desk-crew)
&nbsp;·&nbsp; [![smithery badge](https://smithery.ai/badge/deskcrew/support)](https://smithery.ai/servers/deskcrew/support)
&nbsp;·&nbsp; MCP Registry: **`io.deskcrew/support`** &nbsp;·&nbsp; [deskcrew.io](https://deskcrew.io)

<a href="https://www.producthunt.com/products/deskcrew?utm_source=badge-featured&utm_medium=badge&utm_campaign=badge-deskcrew"><img src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=1197215&theme=dark" alt="DeskCrew on Product Hunt" width="250" height="54" /></a>

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 402` and you pay per call in USDC ([x402](https://x402.org)). 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](https://deskcrew.io/signup),
  mint an `mcp_` credential, and reach your own desk's tickets on `/api/mcp` with no per-call
  payment. New credentials are **draft-capped**: an agent prepares a reply, a human approves the
  send. See [Manage your own content](#manage-your-own-content-authenticated).

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.

## Connect

Remote, streamable-HTTP MCP endpoint (nothing to install):

```
https://deskcrew.io/api/mcp/{tenant}
```

Client config (Claude Desktop, Cursor, or any MCP client):

```json
{
  "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:

```bash
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](https://x402.org) 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 discovery
- `https://deskcrew.io/api/mcp/{tenant}/manifest`: per-tenant terms

## Tools

| Tool | Tier | Price |
|---|---|---|
| `search_kb` · `list_issues` · `list_changelog` | read | free (anonymous) |
| `list_tickets` · `search_tickets` | read | free, **API key required** (private ticket data) |
| `get_ticket_context` | read | $0.02 |
| `create_ticket` · `create_issue` | draft | $0.02 |
| `triage` · `link_issue` | draft | $0.03 |
| `draft_reply` · `propose_resolution` | draft | $0.06 |
| `assign` · `resolve` · `send_reply` | 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:

```json
{
  "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 |
|---|---|
| `create_kb` | `title` (required, ≤200 chars) · `body` (required, Markdown, ≤50k chars) · `status` (optional: `draft` \| `published`, default `draft`) |
| `update_kb` | `id` (required, must belong to your tenant) · `title` / `body` / `status` (all optional, send at least one) |
| `create_changelog` | `title` (required, ≤200 chars) · `body` (required, Markdown, ≤50k chars) · `status` (optional: `draft` \| `published`, default `draft`) |

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` / `POST` `https://deskcrew.io/api/v1/kb`
- `GET` / `PATCH` / `DELETE` `https://deskcrew.io/api/v1/kb/:id`
- `GET` / `POST` `https://deskcrew.io/api/v1/changelog` · `GET` / `PATCH` / `DELETE` `…/changelog/:id`

```bash
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/support`
- x402 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](./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.
ai-agentsclaudeclaude-codecustomer-supportdeskcrewdeskcrew-ai-chatbothelpdeskmcpmodel-context-protocolskillsolanax402x402-payment

Lo que la gente pregunta sobre deskcrew-mcp

¿Qué es webmilmind1/deskcrew-mcp?

+

webmilmind1/deskcrew-mcp es mcp servers para el ecosistema de Claude AI. Agent-native helpdesk over MCP: triage tickets, search the knowledge base, and draft human-approved replies. Free credential or anonymous x402 (USDC). Tiene 2 estrellas en GitHub y se actualizó por última vez 6d ago.

¿Cómo se instala deskcrew-mcp?

+

Puedes instalar deskcrew-mcp clonando el repositorio (https://github.com/webmilmind1/deskcrew-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar webmilmind1/deskcrew-mcp?

+

webmilmind1/deskcrew-mcp aún no ha sido auditado por nuestro agente de seguridad. Revisa el repositorio original en GitHub antes de usarlo en producción.

¿Quién mantiene webmilmind1/deskcrew-mcp?

+

webmilmind1/deskcrew-mcp es mantenido por webmilmind1. La última actividad registrada en GitHub es de 6d ago, con 0 issues abiertos.

¿Hay alternativas a deskcrew-mcp?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega deskcrew-mcp en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: webmilmind1/deskcrew-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/webmilmind1-deskcrew-mcp)](https://claudewave.com/repo/webmilmind1-deskcrew-mcp)
<a href="https://claudewave.com/repo/webmilmind1-deskcrew-mcp"><img src="https://claudewave.com/api/badge/webmilmind1-deskcrew-mcp" alt="Featured on ClaudeWave: webmilmind1/deskcrew-mcp" width="320" height="64" /></a>

Más MCP Servers

Alternativas a deskcrew-mcp