Skip to content
xNotePadAI
📝 App

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✓ Verifiedclaude_desktop_config.jsonHTTP
Claude Code (CLI)✓ Verifiedclaude mcp addHTTP
Cursor⏳ Submitted.cursor/mcp.jsonHTTP
Kiro✓ Power available.kiro/settings/mcp.jsonHTTP
Cline⏳ Submittedcline_mcp_settings.jsonHTTP
VS Code (Copilot)EmergingSettings UIHTTP
Any MCP Client✓ CompatibleJSON configHTTP

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

EndpointPOST https://www.xnotepadai.com/api/mcp/
TransportHTTP (Streamable HTTP)
ProtocolJSON-RPC 2.0
AuthBearer token in Authorization header
Tools13 (with annotations)
Registrycom.xnotepadai/notes v3.2.1

Your token is pre-generated — just copy and paste

Get Your Token →
MCP Overview All 13 Tools API Docs Setup Guide