The DevSpeak MCP server gives compatible AI clients direct access to the DevSpeak production translation tools.
DevSpeak supports two MCP transports today:
stdio via the published npm package @devspeak/mcpstreamable-http via https://www.devspeak.dev/mcpOnce configured, users can access twelve tools:
translate_texttranslate_markdownrefine_translationoptimize_textsummarize_inputget_historyget_account_infodetect_languagelist_languagesauth_confirmpatch_translation_notepublish_linkedin_post — admin-only; previews by default and publishes only when dryRun is explicitly falseThe server also exposes read-only resources for supported languages, API reference, and workflow reference.
These tools run through the live DevSpeak API, so users do not need a separate local backend.
You will need:
stdio installs, or a remote-MCP-capable client for the hosted endpointAdd the server to ~/.claude/settings.json (user level) or .claude/settings.json (project level):
`` { "mcpServers": { "devspeak": { "command": "npx", "args": ["-y", "-p", "@devspeak/mcp", "devspeak-mcp"], "env": { "DEVSPEAK_API_KEY": "dsk_live_your_key_here" } } } }json
`Claude Desktop example
Add the following entry to your Claude Desktop configuration file.
`json
{
"mcpServers": {
"devspeak": {
"command": "npx",
"args": ["-y", "-p", "@devspeak/mcp", "devspeak-mcp"],
"env": {
"DEVSPEAK_API_KEY": "dsk_live_your_key_here"
}
}
}
}
`
Typical config file locations:
In Cursor, add a command-based MCP server with:
If your MCP host supports streamable-http, point it to:https://www.devspeak.dev/mcp
x-api-key: dsk_live_your_key_here
Use the www host. The apex devspeak.dev answers with a 308 redirect, and several MCP clients do not follow redirects on streamable-http POSTs.
Clients that only support bearer-style auth can send Authorization: Bearer ; the server normalizes that header to x-api-key before auth checks.
Gemini CLI, Antigravity, and other remote-capable hosts should use whichever transport their MCP config model prefers: the local npm package for stdio, or the hosted endpoint above for remote sessions.Verify the connection
After restarting the client, test the setup by asking the agent to run:
If the key is valid, the agent should confirm that it can reach the DevSpeak backend.
The MCP server provides the tools. The public DevSpeak skills provide the workflow instructions. In practice, most users should install both:
` npx skills add devspeak-dev/devspeak-skillsbash
`
That combination gives the agent both runtime access and task-specific guidance.
Current public discovery points for the MCP server are: