Installation
Claude Desktop
-
Open Claude Desktop settings: Claude → Settings → Developer → Edit Config
-
Add the xQR server to your
claude_desktop_config.json:{"mcpServers": {"xqr": {"command": "npx","args": ["@xqr/mcp-server"],"env": {"XQR_API_KEY": "xqr_pk_your_key_here"}}}} -
Restart Claude Desktop. You should see “xqr” listed in the MCP servers.
Claude Code (CLI)
Add to your project’s .mcp.json:
{ "mcpServers": { "xqr": { "command": "npx", "args": ["@xqr/mcp-server"], "env": { "XQR_API_KEY": "xqr_pk_your_key_here" } } }}VS Code
Add to your VS Code settings.json or workspace .vscode/mcp.json:
{ "mcp": { "servers": { "xqr": { "command": "npx", "args": ["@xqr/mcp-server"], "env": { "XQR_API_KEY": "xqr_pk_your_key_here" } } } }}Cursor
Add to your Cursor MCP configuration (.cursor/mcp.json):
{ "mcpServers": { "xqr": { "command": "npx", "args": ["@xqr/mcp-server"], "env": { "XQR_API_KEY": "xqr_pk_your_key_here" } } }}Global Install (Optional)
If you prefer a global installation instead of npx:
npm install -g @xqr/mcp-serverThen use xqr-mcp as the command instead of npx:
{ "command": "xqr-mcp", "env": { "XQR_API_KEY": "xqr_pk_your_key_here" }}Was this page helpful?
Thanks for your feedback!