SA
Portal
ServiceAgent × Claude Desktop

Drive the entire ServiceAgent platform from a Claude Desktop conversation.

`@serviceagent/mcp` plugs into Claude Desktop's MCP support and exposes ~30 tools — provision a workspace, scaffold the chat / calendar / voice components, design and publish voice agents, claim the workspace, and configure everything from a website URL with `magic_onboarding`.

Install in Claude Desktop

Click "Add to Claude Desktop" to download a pre-built MCP config block, or paste the snippet below into claude_desktop_config.json. Restart Claude Desktop after either path.

claude_desktop_config.json
{
  "mcpServers": {
    "serviceagent": {
      "command": "npx",
      "args": ["-y", "@serviceagent/mcp"],
      "env": {
        "SERVICEAGENT_MCP_CLIENT": "claude-desktop"
      }
    }
  }
}

Drop-in prompt

Paste this into a Claude Desktop conversation. Claude calls every ServiceAgent tool in sequence and writes the results into your project.

Full setup in one prompt

Code
Add a ServiceAgent chat widget, calendar booking, and voice agent to my Next.js app.
Use the serviceagent MCP:
- create_project (siteName: "Acme HVAC", framework: "nextjs")
- add_widget, add_calendar, add_voice_agent
- claim_workspace (email: "me@acme.example") — write SERVICEAGENT_API_KEY to .env.

After that, configure the knowledge base from https://acmehvac.example via magic_onboarding.

Tool catalog

Claude Desktop discovers all 30 tools automatically. Highlights:

  • create_project + claim_workspace — provision and claim in one shot
  • add_widget / add_calendar / add_voice_agent — drop embeds into any framework
  • create_voice_agent + 6 other voice CRUD tools + 4 phone-number tools
  • magic_onboarding — full configuration from a website URL
  • create_webhook, configure_knowledge_base, get_docs

Full tool reference: @serviceagent/mcp.

MCP resources Claude can attach

  • docs://llms-txt — concise docs index
  • docs://llms-full-txt — full docs + API reference
  • rules://cursor + rules://agents-md — opinionated integration rules
  • docs://env-vars, docs://api-postman
  • READMEs for every @serviceagent/* package via unpkg.com