@lamatic/mcp
OfficialEnables browsing, searching, and validating AgentKit contributions on GitHub, including revalidating pull requests with an optional GitHub token.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@lamatic/mcpfind documentation for setting up a new project"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@lamatic/mcp
Unified Lamatic MCP server. Merges @lamatic/dev-mcp, @lamatic/graph-mcp, a proxy to the hosted Lamatic Docs MCP, and kit_* — the AgentKit MCP — into one server.
Install
npx @lamatic/mcpRelated MCP server: mcp-canon
Setup
Claude Desktop / Cursor / Claude Code
{
"mcpServers": {
"lamatic": {
"command": "npx",
"args": ["-y", "@lamatic/mcp"]
}
}
}For GraphMCP's execution-only mode (no org key, single flow — e.g. the Studio "Connect with AI" snippet), add env vars instead:
{
"mcpServers": {
"lamatic": {
"command": "npx",
"args": ["-y", "@lamatic/mcp"],
"env": {
"PROJECT_API_KEY": "<projectApiKey>",
"PROJECT_ID": "<projectId>",
"ENDPOINT": "<endpoint>",
"FLOW_ID": "<flowId>"
}
}
}
}For kit_* tools that write to GitHub (kit_revalidate_pr), optionally add a token to raise GitHub's API rate limit and enable posting /validate comments:
{
"mcpServers": {
"lamatic": {
"command": "npx",
"args": ["-y", "@lamatic/mcp"],
"env": {
"GITHUB_TOKEN": "<github-personal-access-token>"
}
}
}
}Tool prefixes
Prefix | Covers | Auth |
| Org/project/flow/credential management |
|
| Execute deployed flows |
|
| Query Lamatic.ai docs via RAG | none — proxies to the public hosted endpoint |
| Browse, search, and validate AgentKit contributions | none for read/validate tools; GitHub token ( |
Config
All credentials live in one namespaced file: ~/.lamatic/config.json
{
"dev": { "apiKey": "...", "orgId": "...", "userId": "..." },
"graph": { "orgApiKey": "...", "projectApiKey": "...", "orgId": "..." },
"kit": { "githubToken": "..." }
}Each namespace degrades independently — missing dev credentials only break dev_* tools, not graph_*, docs_*, or kit_*.
Architecture notes
docs_*does not duplicate the RAG-calling logic from the Lamatic-MCP-Docs repo. It runs a thin MCP client (utils/docsProxy.js) that connects to the existing hosted endpoint (https://docmcp.lamatic.ai/api/mcp) and forwards the call. The standalone hosted endpoint keeps working unchanged for zero-install users.kit_*reads directly from the publicLamatic/AgentKitGitHub repo viautils/kitProxy.js— there is no hosted Kit API today. If one ever gets stood up (the same waydocs_*proxies to a hosted endpoint instead of calling GitHub/RAG directly), the fetch calls inkitProxy.jsare the only thing that needs to change; tool signatures intools/kit.jsstay the same.kit_validate_structuremirrors the Phase 1 checks invalidate-pr.ymlby hand. There's no CI link between the two files today — if Phase 1's bash logic changes, this needs a matching manual update or the two will silently disagree on what counts as a valid kit.
Local development
git clone <this-repo>
cd lamatic-mcp
npm install
node server.jsMaintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Lamatic/Lamatic-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server