Supported MCP Clients
xNotePadAI's MCP server works with any client that implements the Model Context Protocol. Here's every supported agent with setup instructions.
| Client | Status | Config Format | Transport |
|---|---|---|---|
| Claude Desktop | ✓ Verified | claude_desktop_config.json | HTTP |
| Claude Code (CLI) | ✓ Verified | claude mcp add | HTTP |
| Cursor | ⏳ Submitted | .cursor/mcp.json | HTTP |
| Kiro | ✓ Power available | .kiro/settings/mcp.json | HTTP |
| Cline | ⏳ Submitted | cline_mcp_settings.json | HTTP |
| VS Code (Copilot) | Emerging | Settings UI | HTTP |
| Any MCP Client | ✓ Compatible | JSON config | HTTP |
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"xnotepad": {
"type": "http",
"url": "https://www.xnotepadai.com/api/mcp/",
"headers": { "Authorization": "Bearer YOUR_TOKEN" }
}
}
} Restart Claude Desktop after saving. Look for the 🔧 icon to confirm tools loaded.
Claude Code (CLI)
claude mcp add --transport http xnotepad \
https://www.xnotepadai.com/api/mcp/ \
--header "Authorization: Bearer YOUR_TOKEN" Cursor
Add to .cursor/mcp.json in your project root:
{
"mcpServers": {
"xnotepad": {
"type": "http",
"url": "https://www.xnotepadai.com/api/mcp/",
"headers": { "Authorization": "Bearer YOUR_TOKEN" }
}
}
} Kiro
Option A: Install the Power from GitHub:
Powers panel → Add Custom Power → Import from GitHub → https://github.com/rajnaik/power-xnotepad-ai
Option B: Add to .kiro/settings/mcp.json:
{
"mcpServers": {
"xnotepad": {
"type": "http",
"url": "https://www.xnotepadai.com/api/mcp/",
"headers": { "Authorization": "Bearer YOUR_TOKEN" }
}
}
} Cline (VS Code Extension)
Add to Cline's MCP settings (accessible via the Cline extension settings):
{
"mcpServers": {
"xnotepad": {
"type": "http",
"url": "https://www.xnotepadai.com/api/mcp/",
"headers": { "Authorization": "Bearer YOUR_TOKEN" }
}
}
} Any Generic MCP Client
| Endpoint | POST https://www.xnotepadai.com/api/mcp/ |
| Transport | HTTP (Streamable HTTP) |
| Protocol | JSON-RPC 2.0 |
| Auth | Bearer token in Authorization header |
| Tools | 13 (with annotations) |
| Registry | com.xnotepadai/notes v3.2.1 |
Your token is pre-generated — just copy and paste
Get Your Token →