@talqing/mcp. Point Claude Code, Codex or any other MCP client at it and your coding agent builds, publishes and operates agents on Talqing without leaving the terminal.
The server hands your client two things. The first is one tool per API endpoint — 123 of them, covering everything a workspace is built out of. The second is the same platform knowledge our own in-product CoPilot is prompted with: how an agent is put together, draft and published, the operation tree, lifecycle hooks, channels and model selection. Your client receives that automatically as server instructions, so anything the CoPilot can build, your coding agent can build.
Both are generated from the same registry the CoPilot binds its own tools from, so the two surfaces cannot drift apart. An endpoint that exists is a tool; a rule the CoPilot follows is a rule your client is told.
What you get
The full list, with the HTTP call each one maps to, is on tools.
Who it is for
- You already work inside a coding agent, and want the voice agent written in the same session as the API its tools will call.
- You are testing changes against a real workspace and would rather say what you want than assemble a config by hand.
- You are debugging: read the last five failed calls and tell me why is a question the server can answer, because
get_callreturns the transcript, the tool calls and the per-stage latency of a call that already happened.
It is your API, with your permissions
The server adds nothing and hides nothing. Every call it makes is a call you could make yourself with the same token: the same operations, the same workspace, the same role. A view-only member gets the read operations and a clear 403 on the rest, exactly as in the dashboard. Four areas are out of reach by design, and permissions says which and why.TALQING_BASE_URL names a region, and everything the server can reach belongs to that one — an agent, its calls, its phone numbers and its credit balance. One token reaches every region, so working in another one is the same token and a different base URL.
If you want to see it work before reading further, the coding-agent quickstart is four prompts from an empty workspace to a published agent with a tool attached.
Next
Setup
Install and configure it for your client, and verify it works.
Recipes
Prompts that produce a published agent, a live phone line and a campaign.
Tools
Every operation, how arguments map to HTTP, and the deferred schemas.