@kreel-ai/mcp
v0.1.1
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 connects local MCP clients to the hosted Kreel Streamable HTTP MCP
server and injects KREEL_API_KEY into workspace-scoped tool calls. Claude sees
clean tool schemas; users do not need to pass api_key manually.
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