kiteuikit-mcp
v0.1.0
Published
stdio MCP bridge for the KiteUI HTTP API (Cursor, Claude Desktop, etc.)
Readme
kiteuikit-mcp
stdio MCP bridge for KiteUI. Use with Cursor, Claude Desktop, and other MCP clients.
KiteUI’s cloud endpoint (https://kiteui.com/api/mcp) is a REST API, not a native MCP process. This package speaks MCP on stdin/stdout and forwards tool calls over HTTP.
Requirements
- Node.js 18+
- Enterprise license key (
KITE-…ormcp_KITE-…)
Cursor (~/.cursor/mcp.json or .cursor/mcp.json)
{
"mcpServers": {
"kiteui": {
"command": "npx",
"args": ["-y", "[email protected]"],
"env": {
"KITEUI_API_KEY": "mcp_KITE-XXXX-XXXX-XXXX"
}
}
}
}Restart Cursor after saving.
Do not use curl as the command
Cursor expects a long-running MCP server on stdio. curl prints a one-shot HTTP response and exits, which causes Connection closed / -32000 errors.
Environment
| Variable | Description |
|----------|-------------|
| KITEUI_API_KEY | Enterprise license key (required for tool calls) |
| KITEUI_MCP_URL | Optional override (default https://kiteui.com/api/mcp) |
