Invoke deployed LLMGraph no-code LLM workflows (chat, RAG, automations) as MCP tools.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent — or use 1-click editor setup below.
💡 Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
A Model Context Protocol (MCP) server that exposes your LLMGraph workflow deployments as MCP tools. Connect it to Claude Desktop, Claude Code, Cursor, or any other MCP client, and your assistant can invoke the workflows you built and deployed on LLMGraph.
Each configured deployment becomes one MCP tool. The server runs over stdio and is designed to be launched with npx, so there is nothing to install permanently.
https://llmgraph.ai/api/<graph_id>/<environment>) and an API key from the LLMGraph dashboardAll configuration is via environment variables.
| Variable | Required | Description |
|---|---|---|
LLMGRAPH_ENDPOINT | yes | Full deployment endpoint URL copied from the dashboard |
LLMGRAPH_API_KEY | yes | Secret API key for the deployment |
LLMGRAPH_TOOL_NAME | no | Tool name shown to the client (default: invoke_workflow) |
LLMGRAPH_TOOL_DESCRIPTION | no | Tool description shown to the model |
LLMGRAPH_SCHEMA_MODE | no | input (default) or chat, see below |
LLMGRAPH_TIMEOUT_MS | no | Request timeout in milliseconds, positive integer (default: 180000). Applies in both single and multiple deployment modes. |
Set LLMGRAPH_DEPLOYMENTS to a JSON array; each entry becomes one tool. When set, it takes precedence over the single-deployment variables.
input (default): the tool takes { "input": <object> } and the object is passed through unchanged as the POST body, so it works with any workflow input shape.chat: for chat-style workflows. The tool takes { "user_input": <string>, "history": [{"role": "user"|"assistant", "content": <string>}] } (history optional) and sends it in the shape chat workflows expect.Add to claude_desktop_config.json (Settings, Developer, Edit Config):
Restart Claude Desktop and the tool appears in the tools menu.
Add to ~/.cursor/mcp.json (or .cursor/mcp.json in your project):
Non-200 responses from the LLMGraph API are returned to the client as MCP tool errors carrying the API's error message:
| Status | Meaning |
|---|---|
| 400 | invalid request body |
| 401 | missing or invalid API key |
| 402 | subscription blocked |
| 403 | API disabled or origin not allowed |
| 404 | unknown deployment or wrong API key |
| 422 | workflow run failed |
| 429 | rate or budget limited |
| 504 | workflow timed out |
x-api-key header of requests to your configured endpoint, and never writes it to stdout, stderr, or error messages.claude_desktop_config.json store the key in plain text on your machine; treat them accordingly.MIT, see LICENSE.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/llmgraph)<a href="https://allmcps.com/mcp/llmgraph"><img src="https://allmcps.com/api/badge/llmgraph?style=directory" alt="Llmgraph on AllMCPs" /></a>