@kreel-ai/mcp
v0.2.0
Published
Kreel MCP stdio bridge for Claude Code and Claude Desktop
Readme
@kreel-ai/mcp
Kreel MCP stdio bridge for Claude Code and Claude Desktop.
This package bridges a local stdio MCP client to the hosted Kreel Streamable HTTP
MCP server, authenticating with your KREEL_API_KEY (sent as an
Authorization: Bearer header).
Most clients don't need this bridge. Claude (web/desktop/Cowork), ChatGPT (Developer mode), and Claude Code support remote MCP connectors directly — add the URL
https://api.kreel.ai/mcpand log in with OAuth. Use this bridge only for stdio-only clients, or when you specifically want API-key auth.
Claude Code
claude mcp add kreel \
-e KREEL_API_KEY=kreel_live_xxx \
-- npx -y @kreel-ai/mcp@latestFor local backend development:
cd /absolute/path/to/BeyondPeaksAI/packages/kreel-mcp
npm ci
claude mcp add kreel \
-e KREEL_API_KEY=bpai_live_xxx \
-e KREEL_MCP_URL=http://localhost:8000/mcp \
-- node /absolute/path/to/BeyondPeaksAI/packages/kreel-mcp/bin/kreel-mcp.jsClaude Desktop
{
"mcpServers": {
"kreel": {
"command": "npx",
"args": ["-y", "@kreel-ai/mcp@latest"],
"env": {
"KREEL_API_KEY": "kreel_live_xxx"
}
}
}
}Configuration
| Variable | Default | Description |
|---|---|---|
| KREEL_API_KEY | required for workspace tools | Kreel API key from the product UI. |
| KREEL_MCP_URL | https://api.kreel.ai/mcp | Hosted or local Kreel MCP endpoint. |
CLI flags --api-key and --url are also supported for development.
Publish
cd packages/kreel-mcp
npm publish --access public