Twentycrm Graphql
БесплатноНе проверенMCP server for Twenty CRM that enables AI assistants to interact with the CRM via GraphQL, including schema inspection and query execution.
Описание
MCP server for Twenty CRM that enables AI assistants to interact with the CRM via GraphQL, including schema inspection and query execution.
README
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-mcp
Environment Variables
| Variable | Required | Description |
|---|---|---|
TWENTY_API_TOKEN |
Yes | Your Twenty API token (Settings > API & Webhooks) |
TWENTY_GQL_URL |
No | Your Twenty instance's GraphQL endpoint. For cloud-hosted, it's https://[your-org].twenty.com/graphql. For self-hosted, it's https://[your-domain]/graphql. |
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-crmproject- Docker
Resources created
| Resource | Description |
|---|---|
| Artifact Registry repo | europe-west2-docker.pkg.dev/decodedata-crm/mcp/ |
| Cloud Run service | twentycrm-mcp — publicly accessible, auth enforced by app |
| Secret Manager secrets | twenty-api-token, mcp-auth-token |
| Service account | [email protected] |
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
Установка Twentycrm Graphql
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/decode-data/twentycrm-graphql-mcpFAQ
Twentycrm Graphql MCP бесплатный?
Да, Twentycrm Graphql MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Twentycrm Graphql?
Нет, Twentycrm Graphql работает без API-ключей и переменных окружения.
Twentycrm Graphql — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Twentycrm Graphql в Claude Desktop, Claude Code или Cursor?
Открой Twentycrm Graphql на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare Twentycrm Graphql with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
