The DevSpeak MCP server gives compatible AI clients direct access to the DevSpeak production translation tools.
Once configured, users can access tools such as:
translate_texttranslate_markdownrefine_translationdetect_languagelist_languagesauth_confirmThese tools run through the live DevSpeak API, so users do not need a separate local backend.
You will need:
Add the following entry to your Claude Desktop configuration file.
`` { "mcpServers": { "devspeak": { "command": "npx", "args": ["-y", "@devspeak/mcp"], "env": { "DEVSPEAK_API_KEY": "dsk_live_your_key_here" } } } }json
`
Typical config file locations:
In Cursor, add a command-based MCP server with:
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.