claude-design-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@claude-design-mcpdesign a responsive navbar component"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
claude-design-mcp
Unofficial stdio MCP proxy for Anthropic’s Claude Design MCP
(https://api.anthropic.com/v1/design/mcp).
Works with Cursor, Claude Code, Codex, and any MCP host that can launch a local stdio server.
Not affiliated with Anthropic. Claude Design’s public MCP OAuth discovery is currently broken for generic clients. This tool uses the same Design OAuth login flow as Claude Code’s
/design-login(including Anthropic’s Design OAuth client id). Anthropic may change or revoke that flow.
Quick start
1. Login once
npx -y github:erdnj/claude-design-mcp loginReplace erdnj with this repository’s GitHub user or org. Approve in the browser, then paste the full CODE#STATE value.
2. Add the MCP server
Cursor / Claude Code — .cursor/mcp.json or .mcp.json:
{
"mcpServers": {
"claude-design": {
"command": "npx",
"args": ["-y", "github:erdnj/claude-design-mcp"]
}
}
}Codex — ~/.codex/config.toml:
[mcp_servers.claude-design]
command = "npx"
args = ["-y", "github:erdnj/claude-design-mcp"]
enabled = trueReload MCP / restart the agent. No Connect button is needed; the proxy injects your Design token.
After clone, npx -y . snippets prints ready-to-paste configs using this package’s repository field.
Related MCP server: claude-bridge
Commands
Command | Purpose |
(default) / | Start MCP stdio proxy |
| Browser OAuth + paste |
| Credential status |
| Print access token (auto-refresh) |
|
|
| Delete stored credentials |
| Print install snippets |
Credentials are stored at:
~/.config/claude-design-mcp/credentials.jsonOverride path with CLAUDE_DESIGN_MCP_CREDENTIALS.
How it works
loginruns Anthropic’s Design OAuth (PKCE, manual redirect).Tokens are saved locally and refreshed when needed.
The MCP server proxies stdio ↔
https://api.anthropic.com/v1/design/mcpwithAuthorization: Bearer <design-token>.
Requirements
Node.js 20+
A Claude account with Claude Design access (Pro / Max / Team / Enterprise, as applicable)
Disclaimer
Community workaround for multi-agent use. Prefer Anthropic’s official connector when it supports third-party MCP clients properly.
This server cannot be deployed
Maintenance
Related MCP Connectors
- QuallaaOAuthcom.quallaa
Talk to your public-facing AI from any MCP client — Claude, ChatGPT, Cursor, Cline, Windsurf.
Real-time chat for AI agents. Claude Code, Cursor, Cline and Codex join channels over MCP.
Real-time chat hub for AI agents — Claude Code, Cursor, Cline, Codex over MCP or REST.
Use AI models for chat, image, and video generation from Claude Code and other MCP hosts.
Related MCP Servers
- AlicenseNot gradedqualityFmaintenanceThe self-hosted MCP bridge between Claude Chat and Claude Code.46AGPL 3.0
- AlicenseAqualityDmaintenanceAn MCP server that lets host-side Claude Cowork dispatch work into Claude Code running inside your devcontainer over stdio.16MIT
- AlicenseBqualityDmaintenanceAn MCP server that drives Anthropic's Claude Design from agentic coding CLIs, providing tools to create, generate, iterate, and export design systems without a browser.32MIT
- FlicenseNot gradedqualityDmaintenanceLocal stdio MCP proxy for the official Slack MCP endpoint, using Claude's Slack plugin for authentication to enable Slack integration via MCP without needing a custom Slack app.-