@outcallerai/mcp-stdio
v0.3.0
Published
Local stdio MCP bridge for the OutCallerAI public API
Maintainers
Readme
@outcallerai/mcp-stdio
Local stdio MCP bridge for the OutCallerAI public API. Lets AI clients (Claude Desktop, Cursor, VS Code, and others) inspect workspace data and perform approved OutCallerAI actions through a local child process.
Install
npm install @outcallerai/mcp-stdio
pnpm add @outcallerai/mcp-stdio
yarn add @outcallerai/mcp-stdio
bun add @outcallerai/mcp-stdio
# Run directly without installing
npx -y @outcallerai/mcp-stdio
pnpm dlx @outcallerai/mcp-stdio
yarn dlx @outcallerai/mcp-stdio
bunx @outcallerai/mcp-stdioRequires Node.js 20+.
Usage
Set the OUTCALLERAI_API_KEY environment variable and run:
OUTCALLERAI_API_KEY="your-key" npx -y @outcallerai/mcp-stdioThe server exposes read tools plus guarded write actions for workspaces, use cases, agents, leads, calls, files, artifacts, integrations, knowledge bases, meetings, webhooks, analytics, and async job management. Destructive operations carry explicit MCP annotations so clients can request confirmation before executing them.
Client configuration examples
Claude Desktop:
{
"mcpServers": {
"outcallerai": {
"command": "npx",
"args": ["-y", "@outcallerai/mcp-stdio"],
"env": {
"OUTCALLERAI_API_KEY": "your-key"
}
}
}
}VS Code:
{
"servers": {
"outcallerai": {
"command": "npx",
"args": ["-y", "@outcallerai/mcp-stdio"],
"env": {
"OUTCALLERAI_API_KEY": "${input:outcallerai-api-key}"
}
}
}
}See the full documentation for all supported clients.
Resources
License
Apache-2.0
