DocsMCPOverview

MCP in Lamatic

Model Context Protocol (MCP) is an open standard for connecting AI assistants to external systems, data sources, APIs, tools, and services through one uniform interface.

Lamatic ships three MCP products, each covering a different direction of the protocol:

  • MCP Node lets your flow consume tools from any external MCP server.
  • Graph MCP exposes your deployed flows as MCP tools that external AI assistants can call.
  • Docs MCP is a hosted MCP server that answers questions about Lamatic itself.

The three MCPs

MCP Node: consume external MCP servers

The MCP Node connects your Lamatic flow to an existing MCP server. Configure the server’s URL, headers, and protocol once, and any AI node downstream can call the tools that server exposes.

Use it when you want your flow to call a third-party MCP server, such as a weather API, a database, or an internal tool catalog.

Graph MCP: expose your flows as MCP tools

Graph MCP runs in the opposite direction: it turns your deployed Lamatic flows into MCP-callable tools. Any MCP client (Claude Desktop, Cursor, VS Code, custom agents) can then invoke those flows with natural language.

Use it when you want an external AI assistant to drive your flows. For example, a developer in Cursor triggering a flow that generates a weekly report.

Docs MCP: query Lamatic docs from any AI assistant

Docs MCP is a hosted MCP server that Lamatic maintains. It indexes lamatic.ai/docs into a RAG pipeline and exposes a query_docs tool. Any MCP client can ask natural-language questions about Lamatic and get answers with references. No setup, no API key.

Use it when you want your AI assistant to answer questions about Lamatic itself its nodes, agents, integrations and error messages, instead of you searching the docs manually.


When to use which

MCP NodeGraph MCPDocs MCP
DirectionLamatic flow → external MCP serverExternal MCP client → Lamatic flowExternal MCP client → Lamatic-hosted docs server
RoleClient (consumer)Server (provider)Server (hosted by Lamatic)
What you provideThe URL of an external MCP serverA deployed flow with an API triggerNothing — it’s hosted
What you getExternal tools available inside the flowYour flow callable from any MCP clientA query_docs tool that answers questions about Lamatic
Typical callerAI nodes inside your flowClaude Desktop, Cursor, VS Code, custom agentsClaude Desktop, Cursor, anyone reading the docs
Auth modelHeaders and API keys you set on the nodeOrg API key + Project API keyNone (free to use)
Setup locationStudio → MCP/Tools → MCPnpx @lamatic/graph-mcp in the client’s configAdd https://docmcp.lamatic.ai/api/mcp to your client config

Quick chooser

  • “I want my flow to use tools from an external service via MCP.” → MCP Node
  • “I want Claude or Cursor to call my Lamatic flow.” → Graph MCP
  • “I want my AI assistant to answer questions about Lamatic itself.” → Docs MCP
  • All of the above. → A flow that consumes external MCP tools (MCP Node) can itself be exposed via Graph MCP, while you use Docs MCP to ask your assistant about Lamatic as you build.

Was this page useful?

Subscribe to updates