@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
The unified Model Context Protocol server for Lamatic.ai — manage your org, execute deployed flows, query the docs, and explore AgentKit, all from any MCP-compatible AI agent (Claude, Cursor, Claude Code, and more).
@lamatic/mcp merges four capabilities into a single server so your AI assistant can operate Lamatic end to end:
Prefix | What it does | Package it replaces |
| Manage orgs, projects, flows, contexts & credentials |
|
| Execute deployed Lamatic flows |
|
| Query Lamatic.ai documentation via RAG | hosted Docs MCP |
| Browse, search & validate AgentKit contributions | — |
Each namespace degrades independently — missing credentials for one prefix never break the others.
Requirements
Node.js ≥ 18
Related MCP server: mcp-canon
Install
No install needed — run it on demand with npx:
npx @lamatic/mcpOr install globally to expose the lamatic-mcp binary:
npm install -g @lamatic/mcp
lamatic-mcpSetup
Claude Desktop / Cursor / Claude Code
Add the server to your MCP config:
{
"mcpServers": {
"lamatic": {
"command": "npx",
"args": ["-y", "@lamatic/mcp"]
}
}
}Execution-only mode (single flow)
For GraphMCP's execution-only mode (no org key, single flow — e.g. the Studio "Connect with AI" snippet), pass env vars instead:
{
"mcpServers": {
"lamatic": {
"command": "npx",
"args": ["-y", "@lamatic/mcp"],
"env": {
"PROJECT_API_KEY": "<projectApiKey>",
"PROJECT_ID": "<projectId>",
"ENDPOINT": "<endpoint>",
"FLOW_ID": "<flowId>"
}
}
}
}GitHub token (optional, for AgentKit PR writes)
kit_revalidate_pr posts /validate comments to GitHub. Add a token to raise GitHub's API rate limit and enable comment writes:
{
"mcpServers": {
"lamatic": {
"command": "npx",
"args": ["-y", "@lamatic/mcp"],
"env": {
"GITHUB_TOKEN": "<github-personal-access-token>"
}
}
}
}Authentication
Prefix | How to authenticate |
|
|
|
|
| None — proxies to the public hosted endpoint |
| None for read/validate tools; GitHub token ( |
All credentials live in one namespaced file at ~/.lamatic/config.json:
{
"dev": { "apiKey": "...", "orgId": "...", "userId": "..." },
"graph": { "orgApiKey": "...", "projectApiKey": "...", "orgId": "..." },
"kit": { "githubToken": "..." }
}Available tools
dev_* — org, project, flow & credential management
Auth & projects
dev_auth_login— Authenticate with Lamatic DevMCPdev_list_projects— List all projects in your organizationdev_create_project— Create a new projectdev_get_project— Get details of a projectdev_update_project— Rename a projectdev_delete_project— Delete a projectdev_deploy_project— Deploy a project
Flows
dev_create_flow— Create a new flow in a projectdev_get_flows— List all flows in a projectdev_list_all_flows— List all flows for a projectdev_update_flow— Update a flow with new nodes and edgesdev_rename_flow— Rename a flowdev_update_flow_status— Change a flow's statusdev_delete_flow— Delete a flow
Contexts (vector / memory)
dev_create_context— Create a new vector or memory contextdev_get_context— Get details of a specific contextdev_get_all_contexts— List all contexts in a projectdev_delete_context— Delete a context
Deployments
dev_list_all_deployments— List all deployments for a projectdev_get_deployment— Get details of a specific deployment
Models
dev_list_model_providers— List available model providers (optionally their models)dev_list_model_creds— List model credentials for a projectdev_create_model_creds— Create model credentials for a providerdev_check_model_status— Check the availability status of a model
Integrations & credentials
dev_list_supported_integrations— List all supported integrationsdev_list_integration_creds— List integration credentials for a projectdev_create_integration_creds— Create integration credentialsdev_get_cred_info— Get details of a specific credentialdev_update_credential— Update an existing credentialdev_delete_credential— Delete a credentialdev_get_oauth_url— Get an OAuth authorization URL for an integration
graph_* — execute deployed flows
graph_auth_login— Authenticate with GraphMCP (only if not configured via env vars)graph_load_project_flows— Load all active flows with their input schemas (org-level access)graph_refresh_flows— Refresh and list all active flows for a project (org-level access)graph_execute_flow— Execute a deployed flow (flowIdoptional in single-flow mode)
docs_* — documentation Q&A
docs_query_docs— Ask any question about Lamatic.ai docs; RAG-powered, no auth required
kit_* — AgentKit browse, search & validation
kit_list— List all kits, bundles, and templates in the AgentKit repokit_get— Get full details for a kit (config, README, flows)kit_search— Search kits by type and/or tag/keywordkit_get_flow— Get the raw.tssource of a flow inside a kitkit_validate_structure— Run CI's Phase 1 structural checks against a local kit before opening a PRkit_check_pr_status— Check Phase 1/Phase 2 validation status and labels on an open PRkit_revalidate_pr— Trigger Phase 2 Studio re-validation by posting the/validatecomment (needs GitHub token)kit_auth_login— Store a GitHub token forkit_check_pr_statusandkit_revalidate_pr
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 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 is ever stood up (the waydocs_*proxies to a hosted endpoint), 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 is 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 https://github.com/Lamatic/Lamatic-MCP.git
cd lamatic-mcp
npm install
node server.jsWindows setup
npx -y @lamatic/mcp won't work on Windows because npx can't determine the executable. Use the local path approach instead:
Clone the repo:
git clone https://github.com/Lamatic/Lamatic-MCP.git
cd Lamatic-MCP
npm installAdd to your
claude.jsonorclaude_desktop_config.json:
"lamatic": {
"type": "stdio",
"command": "node",
"args": ["C:/path/to/Lamatic-MCP/server.js"],
"env": {}
}Mac/Linux users can use npx directly:
"lamatic": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@lamatic/mcp"],
"env": {}
}Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceMCP server that equips AI agents with dev workflow tools including GitHub project management, conventional commits, visual regression testing, Jira/Confluence integration, and a persistent memory knowledge graph.13MIT
- AlicenseAqualityCmaintenanceUniversal MCP knowledge server for LLM agents, powered by local RAG, providing domain-specific best practices and playbooks across software engineering, marketing, video editing, and other knowledge areas.3MIT
- AlicenseBqualityBmaintenanceMCP server wrapping Backstage — query service catalog, fetch TechDocs, and scaffold services via AI agents.7Apache 2.0
- Alicense-qualityDmaintenanceMCP Server for interacting with the Langflow API via a natural language interface. It exposes Langflow functionalities as tools for LLMs.MIT
Related MCP Connectors
Hosted AgentLux MCP server for marketplace, identity, creator, services, and social flows.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server for AgentDocs (agentdocs.eu): read, search, write, comment on & share Markdown docs.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- 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