Twenty CRM MCP Server
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., "@Twenty CRM MCP ServerShow me all opportunities worth over $50,000"
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.
Twenty CRM MCP Server
A Model Context Protocol (MCP) server that connects Twenty CRM with Claude and other AI assistants, so you can manage your CRM data with natural language.
Repository: https://github.com/SaschaRoelofs/twenty-crm-mcp-server
Features
Full CRUD for people, companies, opportunities, tasks, and notes
Generic record tools (
list_records,get_record,create_record,update_record,delete_record) that work with any standard or custom object — including ones added after this server was writtenDynamic schema discovery — automatically adapts to your Twenty CRM configuration and custom fields
Search across multiple object types
Workflow triggering for workflows with a webhook trigger
Installation
Prerequisites
Node.js 18 or higher
A Twenty CRM instance (cloud or self-hosted)
Claude Desktop or another MCP-compatible client
Setup
Clone the repository:
git clone https://github.com/SaschaRoelofs/twenty-crm-mcp-server.git cd twenty-crm-mcp-serverInstall dependencies:
npm installGet your Twenty CRM API key:
Log in to your Twenty CRM workspace
Go to Settings → API & Webhooks (under Developers)
Generate a new API key
Add the server to your
claude_desktop_config.json:{ "mcpServers": { "twenty-crm": { "command": "node", "args": ["/path/to/twenty-crm-mcp-server/index.js"], "env": { "TWENTY_API_KEY": "your_api_key_here", "TWENTY_BASE_URL": "https://api.twenty.com" } } } }For self-hosted Twenty instances, change
TWENTY_BASE_URLto your own domain.Restart Claude Desktop to load the server.
Usage
Once configured, just talk to Claude naturally:
"List the first 10 people in my CRM"
"Create a new person named John Doe with email john@example.com"
"Show me all companies with more than 100 employees"
"Create a $10,000 opportunity called 'Acme Renewal' for Acme Corp"
"Create a task to follow up with John next Friday"
"Add a note about my meeting with the client today"
"Search for any records mentioning 'blockchain'"
"Trigger the 'Send Welcome Email' workflow for this contact"API Reference
create_person,get_person,update_person,list_people,delete_person
create_company,get_company,update_company,list_companies,delete_company
create_opportunity,get_opportunity,update_opportunity,list_opportunities,delete_opportunity
create_task,get_task,update_task,list_tasks,delete_task
create_note,get_note,update_note,list_notes,delete_notelink_note/unlink_note— link or unlink a note to a person, company, or opportunitylist_note_targets— list note-to-record links, optionally filtered
get_metadata_objects- Get all object types and schemasget_object_metadata- Get metadata for a specific objectsearch_records- Search across multiple object types
These work with any standard or custom object type by its plural API name (e.g. people, opportunities, or a custom object like projects), so the server keeps working even if objects or fields change in your workspace. Use get_metadata_objects / get_object_metadata to discover valid object type names and fields.
list_records,get_record,create_record,update_record,delete_record
Workflows are standard Twenty objects, so you can already browse them with the generic tools above: list_records/get_record with objectType set to workflows, workflowVersions, or workflowRuns.
trigger_workflow- Trigger a run of a workflow that has a Webhook trigger configured in the Twenty UI (Workflows → your workflow → Trigger → Webhook). Requires the workflow ID and a workspace ID (fromTWENTY_WORKSPACE_IDor passed per-call).
Configuration
Variable | Required | Description |
| Yes | Your Twenty CRM API key |
| No | Twenty CRM base URL (defaults to |
| No | Workspace ID, needed only for |
Custom fields are discovered automatically — no configuration changes needed when you add new fields in Twenty.
Development
git clone https://github.com/SaschaRoelofs/twenty-crm-mcp-server.git
cd twenty-crm-mcp-server
npm install
cp .env.example .env # add your API key
npm testLicense
MIT
This server cannot be installed
Maintenance
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
- 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/SaschaRoelofs/twenty-crm-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server