twentycrm-graphql-mcp
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., "@twentycrm-graphql-mcplist my recent opportunities"
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.
twentycrm-graphql-mcp
An MCP (Model Context Protocol) server for Twenty CRM that exposes GraphQL tools to AI assistants.
Usage
Run directly with npx (no install required):
TWENTY_API_TOKEN=your_token npx twentycrm-graphql-mcpRelated MCP server: Twenty MCP
Environment Variables
Variable | Required | Description |
| Yes | Your Twenty API token (Settings > API & Webhooks) |
| No | Your Twenty instance's GraphQL endpoint. For cloud-hosted, it's |
Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"twentycrm": {
"command": "npx",
"args": ["-y", "twentycrm-graphql-mcp"],
"env": {
"TWENTY_API_TOKEN": "your_token_here",
"TWENTY_GQL_URL": "https://your-instance.com/graphql"
}
}
}
}Deploying to Google Cloud Run
Note: This deployment is not currently active. The recommended way to use this package is via
npxas described above.
The terraform/ directory contains infrastructure-as-code to deploy this as a hosted MCP server on Cloud Run (GCP project decodedata-crm, region europe-west2).
Prerequisites
Terraform >= 1.5
gcloudCLI authenticated with thedecodedata-crmprojectDocker
Resources created
Resource | Description |
Artifact Registry repo |
|
Cloud Run service |
|
Secret Manager secrets |
|
Service account |
|
Deploy
# 1. Build and push the Docker image
gcloud auth configure-docker europe-west2-docker.pkg.dev
IMAGE=europe-west2-docker.pkg.dev/decodedata-crm/mcp/twentycrm-graphql-mcp:latest
docker build -t $IMAGE .
docker push $IMAGE
# 2. Apply infrastructure
cd terraform
terraform init
terraform apply \
-var="image=europe-west2-docker.pkg.dev/decodedata-crm/mcp/twentycrm-graphql-mcp:latest" \
-var="twenty_gql_url=https://crm.decodedata.io/graphql"Secrets
After first apply, populate the secrets in GCP Secret Manager:
# Twenty API token (from Twenty Settings > API & Webhooks)
echo -n "your-twenty-api-token" | gcloud secrets versions add twenty-api-token --data-file=-
# MCP bearer token (any strong random string — required by clients to call the service)
echo -n "your-mcp-auth-token" | gcloud secrets versions add mcp-auth-token --data-file=-Destroy
cd terraform
terraform destroy \
-var="image=europe-west2-docker.pkg.dev/decodedata-crm/mcp/twentycrm-graphql-mcp:latest" \
-var="twenty_gql_url=https://crm.decodedata.io/graphql"HTTP server
When deployed, the service exposes:
GET /sse— SSE endpoint for MCP clients (requiresAuthorization: Bearer <mcp-auth-token>)POST /messages— MCP message endpointGET /health— Health check (unauthenticated)
Available Tools
inspect_schema
Lists all objects and fields in your workspace, including custom fields.
execute_graphql
Run any raw GraphQL query or mutation against Twenty.
Parameters:
query(string, required): The GraphQL query or mutationvariables(object, optional): Variables for the query
execute_metadata
Run any raw GraphQL query or mutation against the Twenty Metadata API (schema management: custom objects, fields, relations).
Parameters:
query(string, required): The GraphQL query or mutationvariables(object, optional): Variables for the query
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
- 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/decode-data/twentycrm-graphql-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server