Skip to content

MCP Servers for Cursor

156 Model Context Protocol servers in the Onei catalogue ship a tested Cursor configuration. Cursor loads MCP servers from .cursor/mcp.json in your project, or from the global config in Settings. Each server below lists the entry to add under mcpServers.

Configurations for .cursor/mcp.json

Arm's official MCP server for porting and tuning software on Arm — semantic docs search, codebase migration scanning, container architecture checks and LLVM-MCA assembly analysis.

Cursor configuration
{
  "command": "docker",
  "args": [
    "run",
    "--rm",
    "-i",
    "--pull=always",
    "-v",
    "/path/to/your/workspace:/workspace",
    "armlimited/arm-mcp"
  ]
}

Official AntV MCP server that turns a description of your data into a rendered chart — 26 visualization types from bar and line to sankey, mind-map, fishbone and geographic maps.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@antv/mcp-server-chart"
  ]
}

Headroom

by Headroom Labs

Context-compression MCP server that shrinks tool outputs, logs, files and RAG chunks before they reach the model, cutting 60-95% of tokens on JSON payloads.

Cursor configuration
{
  "command": "headroom",
  "args": [
    "mcp",
    "serve"
  ]
}

Attio's official hosted MCP server — search, read and write your CRM records, lists, notes, tasks, meetings and emails from any MCP client over OAuth.

Cursor configuration

Or add it as a remote server with the URL https://mcp.attio.com/mcp and complete OAuth when prompted.

{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://mcp.attio.com/mcp"
  ]
}

Turso's hosted MCP server — manage Turso Cloud databases, branch them point-in-time and run SQL from a coding agent, authorised over OAuth with no API token to paste.

Cursor configuration

Or add {"mcpServers":{"turso":{"url":"https://mcp.turso.ai/mcp"}}} to ~/.cursor/mcp.json for a native remote connection.

{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://mcp.turso.ai/mcp"
  ]
}

Google's official Firebase MCP server — 70+ tools across Firestore, Auth, Crashlytics, Cloud Functions, Storage, Messaging and Remote Config, shipped inside the Firebase CLI.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "firebase-tools@latest",
    "mcp"
  ]
}

agent-device

by Callstack

Give a coding agent a live feedback loop on real mobile, TV and desktop apps — inspect, tap, type and capture evidence on iOS, Android and HarmonyOS over MCP or a CLI.

Cursor configuration
{
  "command": "agent-device",
  "args": [
    "mcp"
  ]
}

Weights & Biases MCP Server

by Weights & Biases

The official W&B MCP server: query experiment runs, Weave LLM traces, artifacts and registries in natural language, and write findings back as a W&B report.

Cursor configuration
{
  "command": "uvx",
  "args": [
    "--from",
    "git+https://github.com/wandb/wandb-mcp-server",
    "wandb_mcp_server"
  ],
  "env": {
    "WANDB_API_KEY": "<your-wandb-api-key>"
  }
}

InfluxDB 3 MCP Server

by InfluxData

InfluxData's official MCP server for InfluxDB 3 — schema discovery, bounded SQL and InfluxQL queries, line-protocol writes and token administration across Core, Enterprise and Cloud.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@influxdata/influxdb3-mcp-server"
  ],
  "env": {
    "INFLUX_DB_INSTANCE_URL": "https://us-east-1-1.aws.cloud2.influxdata.com",
    "INFLUX_DB_TOKEN": "<YOUR_INFLUXDB_TOKEN>",
    "INFLUX_DB_PRODUCT_TYPE": "cloud-serverless"
  }
}

Fireflies.ai

by Fireflies.ai

Fireflies.ai's official remote MCP server — 19 tools for searching meeting transcripts and summaries, pulling action items and analytics, and cutting soundbites from recorded calls.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://api.fireflies.ai/mcp"
  ]
}

Mixpanel's official hosted MCP server — 80+ tools for querying product analytics, building boards, managing cohorts and metrics, and reading session replays.

Cursor configuration

Add to ~/.cursor/mcp.json. Swap the host for mcp-eu or mcp-in for EU / India residency.

{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://mcp.mixpanel.com/mcp"
  ]
}

Replicate's official MCP server: search thousands of hosted models, read their schemas, and run predictions on image, video, audio and language models from inside an agent.

Cursor configuration

Add to .cursor/mcp.json.

{
  "command": "npx",
  "args": [
    "-y",
    "replicate-mcp"
  ],
  "env": {
    "REPLICATE_API_TOKEN": "your-token-here"
  }
}

Hugging Face

by Hugging Face

Hugging Face's official remote MCP server — search and inspect models, datasets and Spaces, browse the Hub filesystem over hf:// URIs, and turn Gradio Spaces into callable tools.

Cursor configuration

Or configure the HTTP URL directly: {"huggingface": {"url": "https://huggingface.co/mcp", "headers": {"Authorization": "Bearer <YOUR_HF_TOKEN>"}}}

{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://huggingface.co/mcp"
  ]
}

Tableau MCP

by Tableau

Tableau's own MCP server — query published data sources, explore workbooks and views, and render live vizzes inside an AI client.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@tableau/mcp-server@latest"
  ],
  "env": {
    "SERVER": "https://my-tableau-server.com",
    "SITE_NAME": "my_site",
    "PAT_NAME": "my_pat",
    "PAT_VALUE": "pat_value"
  }
}

Meilisearch MCP Server

by Meilisearch

Official MCP server for Meilisearch — create and configure indexes, add documents, run hybrid and semantic searches, and manage API keys and tasks through conversation.

Cursor configuration
{
  "command": "uvx",
  "args": [
    "-n",
    "meilisearch-mcp"
  ],
  "env": {
    "MEILI_HTTP_ADDR": "http://localhost:7700",
    "MEILI_MASTER_KEY": "your_master_key"
  }
}

Official Xero MCP server that lets an agent read and write a real accounting ledger — invoices, contacts, payments, payroll timesheets and financial reports — over the Xero API.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@xeroapi/xero-mcp-server@latest"
  ],
  "env": {
    "XERO_CLIENT_ID": "your_client_id",
    "XERO_CLIENT_SECRET": "your_client_secret"
  }
}

Resend

by Resend

Resend's official MCP server for transactional and marketing email — send, schedule and batch messages, manage templates, contacts, broadcasts, automations, domains and suppressions from an agent.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "resend-mcp"
  ],
  "env": {
    "RESEND_API_KEY": "re_xxxxxxxxx"
  }
}

Miro's official hosted MCP server at mcp.miro.com — let agents search and summarise boards, build them, generate diagrams and act on comments, on any Miro plan.

Cursor configuration

Cursor, VS Code and Copilot can also take a plain URL entry: {"mcpServers":{"miro":{"url":"https://mcp.miro.com/"}}}

{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://mcp.miro.com/"
  ]
}

Jupyter MCP Server

by Datalayer

Drive live Jupyter notebooks from an agent — read and edit cells, execute code, see rich outputs, and run against local JupyterLab or a cloud sandbox.

Cursor configuration
{
  "command": "uvx",
  "args": [
    "jupyter-mcp-server@latest"
  ],
  "env": {
    "JUPYTER_URL": "http://localhost:8888",
    "JUPYTER_TOKEN": "<YOUR_TOKEN>"
  }
}

AWS MCP Server

by Amazon Web Services

AWS's managed MCP server: call any AWS API, run sandboxed Python against your account, and load AWS agent skills on demand — under IAM, CloudWatch and CloudTrail.

Cursor configuration

Requires uv installed and AWS credentials configured locally for tools that call AWS APIs.

{
  "command": "uvx",
  "args": [
    "mcp-proxy-for-aws==1.6.3",
    "https://aws-mcp.us-east-1.api.aws/mcp",
    "--metadata",
    "AWS_REGION=us-west-2"
  ]
}

Google's official MCP server for driving the gcloud CLI from natural language, with allowlist and denylist controls over which commands an agent may run.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@google-cloud/gcloud-mcp"
  ]
}

Zapier MCP

by Zapier

Zapier's official hosted MCP server, exposing actions across 8,000+ connected apps as agent tools — with you choosing exactly which actions each server may perform.

Cursor configuration

The mcp.zapier.com setup portal emits a ready-made Cursor configuration.

{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://mcp.zapier.com/api/v1/connect",
    "--header",
    "Authorization: Bearer ${ZAPIER_MCP_TOKEN}"
  ],
  "env": {
    "ZAPIER_MCP_TOKEN": "your-connection-token"
  }
}

Microsoft's official MCP server for Azure DevOps - work items, repos, pipelines, wikis, test plans and iterations, reachable from any MCP client in plain language.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@azure-devops/mcp",
    "<your-ado-organization>"
  ]
}

Serena

by Oraios AI

Semantic code toolkit for coding agents — symbol-level search, editing and refactoring backed by language servers or the JetBrains platform.

Cursor configuration
{
  "command": "serena",
  "args": [
    "start-mcp-server",
    "--context=ide"
  ]
}

GitLab's own MCP server — issues, merge requests, CI/CD pipelines, job logs, wikis and semantic code search over an OAuth-authorised HTTP endpoint.

Cursor configuration

Cursor also supports the endpoint natively as an HTTP MCP server: {"type": "http", "url": "https://gitlab.com/api/v4/mcp"}

{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://gitlab.com/api/v4/mcp"
  ]
}

Mobile MCP

by Mobile Next

Platform-agnostic MCP server that drives iOS and Android apps on simulators, emulators and real devices through the accessibility tree rather than screenshots.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@mobilenext/mobile-mcp@latest"
  ]
}

Grafana

by Grafana Labs

Official Grafana MCP server: search and edit dashboards, query Prometheus, Loki and Pyroscope, and work with alerts, incidents and on-call from an agent.

Cursor configuration
{
  "command": "uvx",
  "args": [
    "mcp-grafana"
  ],
  "env": {
    "GRAFANA_URL": "https://myinstance.grafana.net",
    "GRAFANA_SERVICE_ACCOUNT_TOKEN": "<your service account token>"
  }
}

mcp-remote

by Glen Maddern

A proxy that lets local-only MCP clients connect to remote servers, handling OAuth and transport differences.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://example.com/mcp"
  ]
}

Blender

by Siddharth Ahuja

Control Blender from an AI client — build scenes, apply materials, and run Python against the live session.

Cursor configuration
{
  "command": "uvx",
  "args": [
    "blender-mcp"
  ]
}

E2B

by E2B

Run AI-generated code safely in an isolated cloud sandbox, with results returned as data rather than text.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@e2b/mcp-server"
  ],
  "env": {
    "E2B_API_KEY": "your-api-key"
  }
}

ElevenLabs

by ElevenLabs

ElevenLabs' official MCP server — generate speech, clone voices, transcribe audio, and build voice agents.

Cursor configuration
{
  "command": "uvx",
  "args": [
    "elevenlabs-mcp"
  ],
  "env": {
    "ELEVENLABS_API_KEY": "your-api-key"
  }
}

Apify Actors

by Apify

Apify's official MCP server — turn thousands of ready-made scrapers into tools your assistant can call.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@apify/actors-mcp-server"
  ],
  "env": {
    "APIFY_TOKEN": "your-apify-token"
  }
}

Browserbase

by Browserbase

Browserbase's official MCP server — cloud browser automation with Stagehand's natural-language actions.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@browserbasehq/mcp-server-browserbase"
  ],
  "env": {
    "BROWSERBASE_API_KEY": "your-api-key",
    "BROWSERBASE_PROJECT_ID": "your-project-id"
  }
}

Slack

by Zencoder

Read and post to Slack from an AI client — channels, threads, reactions, and user lookup.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@zencoderai/slack-mcp-server"
  ],
  "env": {
    "SLACK_BOT_TOKEN": "xoxb-your-token",
    "SLACK_TEAM_ID": "T01234567"
  }
}

DBHub

by Bytebase

A universal database MCP server — one integration for PostgreSQL, MySQL, SQL Server, SQLite, and MariaDB.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@bytebase/dbhub",
    "--transport",
    "stdio",
    "--dsn",
    "postgres://user:pass@localhost:5432/db"
  ]
}

MongoDB

by MongoDB

MongoDB's official MCP server — query databases, explore schemas, and manage Atlas clusters from an AI client.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "mongodb-mcp-server"
  ],
  "env": {
    "MDB_MCP_CONNECTION_STRING": "mongodb://localhost:27017"
  }
}

Memfault MCP Server

by Memfault (Nordic Semiconductor)

Remote MCP server for Memfault (Nordic Semiconductor) exposing 18 read-only tools over device fleet telemetry — device vitals, timeseries, crash issues, traces, metrics and software versions.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://app.memfault.com/mcp"
  ]
}

ESP-IDF Tools MCP Server

by Espressif Systems

Espressif's local MCP server built into idf.py — lets an AI client set the chip target, build, flash and clean an ESP-IDF project and read back config, build status and connected serial ports.

Cursor configuration

ESP-IDF Installation Manager launcher

{
  "command": "eim",
  "args": [
    "run",
    "idf.py mcp-server"
  ],
  "env": {
    "IDF_MCP_WORKSPACE_FOLDER": "${workspaceFolder}"
  }
}

ROS MCP Server

by robotmcp

Drive real robots from an AI assistant. Bridges MCP clients to ROS 1 and ROS 2 through rosbridge — publish topics, call services, send action goals and read sensors with no change to robot code.

Cursor configuration
{
  "command": "uvx",
  "args": [
    "ros-mcp",
    "--transport=stdio"
  ]
}

Docs MCP Server

by arabold

Self-hosted documentation retrieval for coding agents — index any library's docs from the web, GitHub, npm, PyPI or local files and query them by exact version. An open-source Context7 alternative.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@arabold/docs-mcp-server@latest"
  ]
}

Retool MCP

by Retool

Retool's official MCP server: query resources, audit user access and manage org membership from an agent, over your own Retool instance with OAuth 2.0.

Cursor configuration

Or add {"mcpServers":{"retool":{"type":"http","url":"https://example.retool.com/mcp"}}} to .cursor/mcp.json.

{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://example.retool.com/mcp"
  ]
}

Cloudsmith MCP

by Cloudsmith

Cloudsmith's official MCP server, built into its CLI: manage artifact repositories, packages and policies through an agent, with write operations off by default.

Cursor configuration

Or run `cloudsmith mcp configure` and pick Cursor.

{
  "command": "cloudsmith",
  "args": [
    "mcp",
    "start"
  ]
}

Cal.com MCP

by Cal.com

Cal.com's official MCP server: book, reschedule and cancel meetings, manage event types and schedules, and query real availability from a chat client.

Cursor configuration

Or add {"mcpServers":{"calcom":{"url":"https://mcp.cal.com/mcp"}}} to .cursor/mcp.json.

{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://mcp.cal.com/mcp"
  ]
}

Crawlbase MCP

by Crawlbase

Official Crawlbase MCP server giving agents live web access — fetch any URL as raw HTML, clean Markdown or a screenshot, with JS rendering and proxy rotation handled for you.

Cursor configuration
{
  "command": "npx",
  "args": [
    "@crawlbase/mcp@latest"
  ],
  "env": {
    "CRAWLBASE_TOKEN": "your-normal-token",
    "CRAWLBASE_JS_TOKEN": "your-javascript-token"
  }
}

agentmemory

by rohitg00

Self-hosted persistent memory for coding agents: hooks capture what you do, and an MCP server lets any agent recall it across sessions and across tools.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@agentmemory/mcp"
  ],
  "env": {
    "AGENTMEMORY_URL": "http://localhost:3111"
  }
}

Alpaca MCP Server

by Alpaca Markets

Alpaca's official MCP server for trading stocks, options and crypto, plus market data and portfolio analysis, in plain language.

Cursor configuration
{
  "command": "uvx",
  "args": [
    "alpaca-mcp-server"
  ],
  "env": {
    "ALPACA_API_KEY": "your_alpaca_api_key",
    "ALPACA_SECRET_KEY": "your_alpaca_secret_key",
    "ALPACA_PAPER_TRADE": "true"
  }
}

Fly.io

by Fly.io

Fly.io's MCP server, built into flyctl — provision and inspect Fly apps from an agent, with subcommands that also deploy and proxy other MCP servers onto Fly machines.

Cursor configuration

Or run `fly mcp server --cursor` to have flyctl add it automatically.

{
  "command": "fly",
  "args": [
    "mcp",
    "server"
  ]
}

Doppler

by Doppler

Doppler's official MCP server — let an agent list projects, read and write secrets, manage configs and review activity logs, scoped by the token you give it.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@dopplerhq/mcp-server"
  ],
  "env": {
    "DOPPLER_TOKEN": "<your-doppler-service-token>"
  }
}

Clerk's official remote MCP server feeds AI coding assistants verified Clerk SDK snippets and implementation patterns, so generated auth code matches the current API.

Cursor configuration

Cursor also supports it natively: {"mcpServers":{"clerk":{"url":"https://mcp.clerk.com/mcp"}}}

{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://mcp.clerk.com/mcp"
  ]
}

Built into Strapi 5.47+, this MCP server turns your own content types into agent-callable tools — CRUD, publish and draft control, scoped by Admin token permissions.

Cursor configuration

Cursor also supports it natively: {"type":"streamable-http","url":"http://localhost:1337/mcp","headers":{"Authorization":"Bearer YOUR_ADMIN_TOKEN"}}

{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "http://localhost:1337/mcp",
    "--header",
    "Authorization: Bearer YOUR_ADMIN_TOKEN"
  ]
}

Trigger.dev MCP Server

by Trigger.dev

Trigger.dev's official MCP server — trigger and monitor background jobs, deploy to any environment, and query runs with TRQL from your coding agent.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "trigger.dev@latest",
    "mcp"
  ]
}

Nulab's official MCP server for Backlog — let an agent read and write projects, issues, comments, milestones, wiki pages, Git repositories and pull requests through the Backlog API.

Cursor configuration
{
  "command": "npx",
  "args": [
    "backlog-mcp-server"
  ],
  "env": {
    "BACKLOG_DOMAIN": "your-domain.backlog.com",
    "BACKLOG_API_KEY": "your-api-key"
  }
}

Appwrite's official MCP server exposes databases, users, teams, functions and storage as agent tools, over a hosted OAuth endpoint or a local stdio bridge.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://mcp.appwrite.io/"
  ]
}

Official MCP server for Arize Phoenix: read traces and spans, manage prompt versions, and run and inspect datasets and experiments from an AI assistant.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@arizeai/phoenix-mcp@latest",
    "--baseUrl",
    "https://app.phoenix.arize.com"
  ],
  "env": {
    "PHOENIX_API_KEY": "<your-phoenix-api-key>"
  }
}

MCP server for self-hosted Dynatrace Managed deployments — problems, vulnerabilities, entities, SLOs, logs and metrics from one or many clusters, in stdio or remote mode.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@dynatrace-oss/dynatrace-managed-mcp-server"
  ],
  "env": {
    "DT_CONFIG_FILE": "/absolute/path/to/dt-config.yaml"
  }
}

Modern Treasury MCP Server

by Modern Treasury

Modern Treasury's official MCP server, built on Code Mode: the agent writes TypeScript against the payments SDK and runs it in a sandbox instead of calling one tool per endpoint.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "modern-treasury-mcp"
  ],
  "env": {
    "MODERN_TREASURY_API_KEY": "My API Key",
    "MODERN_TREASURY_ORGANIZATION_ID": "my-organization-ID",
    "MODERN_TREASURY_WEBHOOK_KEY": "My Webhook Key"
  }
}

Tiger MCP

by Timescale

Timescale's official MCP server, bundled with the Tiger CLI — manage Tiger Cloud Postgres services, inspect schemas and hypertables, and search the docs from an AI assistant.

Cursor configuration
{
  "command": "tiger",
  "args": [
    "mcp",
    "start"
  ]
}

Rootly

by Rootly

Rootly's official MCP server for incident management and on-call — declare and update incidents, page the right responder, and pull timelines and retrospectives into an agent session.

Cursor configuration
{
  "command": "uvx",
  "args": [
    "--from",
    "rootly-mcp-server",
    "rootly-mcp-server"
  ],
  "env": {
    "ROOTLY_API_TOKEN": "<YOUR_ROOTLY_API_TOKEN>"
  }
}

Prefect

by Prefect

Prefect's official read-only MCP server for inspecting flow runs, deployments and automations on Prefect Cloud or self-hosted, with a docs proxy for current CLI and SDK guidance.

Cursor configuration
{
  "command": "uvx",
  "args": [
    "prefect-mcp"
  ]
}

Loops

by Loops

Loops' official remote MCP server — manage contacts, mailing lists, campaigns and transactional email in a Loops account from an agent, over OAuth.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://mcp.loops.so"
  ]
}

Railway

by Railway

Railway's official MCP server, bundled with the Railway CLI — 40+ tools for projects, services, deployments, variables, domains and observability, with destructive actions gated behind explicit confirmation.

Cursor configuration
{
  "command": "railway",
  "args": [
    "mcp"
  ]
}

Todoist

by Doist

Doist's official Todoist MCP server — a hosted OAuth endpoint that lets an agent find, create and update tasks and projects, with inline MCP Apps widgets for task lists.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://ai.todoist.net/mcp"
  ]
}

FetchSandbox MCP

by FetchSandbox

A sandbox for third-party API integrations: agents replay Stripe, GitHub, Twilio and 50+ other workflows — webhooks, retries and failure cases included — without touching the real API.

Cursor configuration

Add to ~/.cursor/mcp.json, restart Cursor fully, then enable the server under Settings -> MCP Servers.

{
  "command": "npx",
  "args": [
    "-y",
    "fetchsandbox-mcp@latest"
  ]
}

Daytona's official MCP server: give an agent a disposable cloud sandbox with a file system, git, process execution, computer use and a live preview URL.

Cursor configuration

Generated by `daytona mcp init cursor`.

{
  "command": "daytona",
  "args": [
    "mcp",
    "start"
  ]
}

Automox's official MCP server for endpoint management — 130+ tools over devices, patches, policies, groups and audit data, self-hosted or on Automox's hosted endpoint.

Cursor configuration

Cursor can also reach the hosted endpoint at https://console.automox.com/api/mcp over HTTP with a Bearer token.

{
  "command": "uvx",
  "args": [
    "--env-file",
    "/path/to/.env",
    "automox-mcp"
  ]
}

1Password's official local MCP server for dev secrets: the agent manages Environments and .env mounts by name, and never sees a secret value.

Cursor configuration

Cursor plugin is in beta.

{
  "command": "1password-mcp"
}

MeetStream MCP Server

by MeetStream AI

Send a bot into a Zoom, Google Meet or Teams call from your agent: 19 tools covering the bot lifecycle, transcripts, per-participant media, live chat and calendar scheduling.

Cursor configuration

Same config works for Windsurf.

{
  "command": "npx",
  "args": [
    "-y",
    "@meetstream/mcp"
  ],
  "env": {
    "MEETSTREAM_API_KEY": "YOUR_API_KEY"
  }
}

Google Analytics MCP Server

by Google Analytics

Google's own MCP server for GA4 — ask questions about traffic, conversions and funnels in plain language and get answers from the Analytics Data and Admin APIs.

Cursor configuration

Add to .cursor/mcp.json.

{
  "command": "pipx",
  "args": [
    "run",
    "analytics-mcp"
  ],
  "env": {
    "GOOGLE_APPLICATION_CREDENTIALS": "PATH_TO_CREDENTIALS_JSON",
    "GOOGLE_PROJECT_ID": "YOUR_PROJECT_ID"
  }
}

WordPress Remote MCP

by Automattic

Automattic's official proxy that connects Claude, Cursor and other MCP clients to a WordPress site — posts, pages, media and WooCommerce — with OAuth 2.1, JWT or application-password auth.

Cursor configuration

Add to .cursor/mcp.json.

{
  "command": "npx",
  "args": [
    "-y",
    "@automattic/mcp-wordpress-remote"
  ],
  "env": {
    "WP_API_URL": "https://your-wordpress-site.com/wp-json/mcp/mcp-adapter-default-server"
  }
}

WorkOS

by WorkOS

WorkOS's official remote MCP server — run your WorkOS dashboard from an agent: organizations, users, SSO connections, Directory Sync, AuthKit branding and audit log streams.

Cursor configuration

Or add {"workos": {"url": "https://mcp.workos.com/mcp"}} to ~/.cursor/mcp.json, then click Login next to the server in Settings → MCP.

{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://mcp.workos.com/mcp"
  ]
}

PlanetScale

by PlanetScale

PlanetScale's official hosted MCP server — browse organizations, databases and branches, read schema, run guarded SQL, and pull Insights and schema recommendations.

Cursor configuration

Or add {"planetscale": {"url": "https://mcp.pscale.dev/mcp/planetscale"}} to .cursor/mcp.json

{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://mcp.pscale.dev/mcp/planetscale"
  ]
}

Argo CD MCP Server

by argoproj-labs

Argo CD's MCP server from argoproj-labs — list and sync applications, walk the resource tree and read workload logs in natural language.

Cursor configuration
{
  "command": "npx",
  "args": [
    "argocd-mcp@latest",
    "stdio"
  ],
  "env": {
    "ARGOCD_BASE_URL": "https://argocd.example.com",
    "ARGOCD_API_TOKEN": "your-argocd-api-token"
  }
}

draw.io MCP Server

by draw.io (JGraph)

The official draw.io MCP server — turn a description into a real diagram, rendered inline in chat or opened straight in the draw.io editor.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@drawio/mcp"
  ]
}

Runpod's official MCP server for driving GPU infrastructure — create and manage Pods, Serverless endpoints, templates and network volumes from an AI client.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@runpod/mcp-server@latest"
  ],
  "env": {
    "RUNPOD_API_KEY": "your-runpod-api-key"
  }
}

Mapbox's official MCP server — geocoding, POI search, routing, isochrones and live interactive maps rendered inside the chat.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@mapbox/mcp-server"
  ],
  "env": {
    "MAPBOX_ACCESS_TOKEN": "your-mapbox-access-token"
  }
}

Plaid's official sandbox MCP server: search Plaid docs, mint sandbox access tokens, generate mock financial data and fire test webhooks while building an integration.

Cursor configuration
{
  "command": "uvx",
  "args": [
    "mcp-server-plaid"
  ],
  "env": {
    "PLAID_CLIENT_ID": "your_client_id",
    "PLAID_SECRET": "your_sandbox_secret"
  }
}

Official Directus MCP server for content teams — browse collections and schema, create and edit items, manage files and comments, and trigger flows from an AI client.

Cursor configuration
{
  "command": "npx",
  "args": [
    "@directus/content-mcp@latest"
  ],
  "env": {
    "DIRECTUS_URL": "https://your-instance.directus.app",
    "DIRECTUS_TOKEN": "your_static_token"
  }
}

Render

by Render

Render's official MCP server — create and inspect web services, static sites, cron jobs, Postgres and key-value instances, pull logs and metrics, and run read-only SQL against a Render-hosted database.

Cursor configuration

~/.cursor/mcp.json

{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://mcp.render.com/mcp"
  ],
  "env": {
    "RENDER_API_KEY": "rnd_xxxxxxxx"
  }
}

Confluent

by Confluent

Open-source MCP server for Confluent Cloud, Confluent Platform and standalone Apache Kafka — 50+ tools spanning topics, Flink SQL, Schema Registry, connectors and Tableflow.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@confluentinc/mcp-confluent",
    "--config",
    "/absolute/path/to/config.yaml"
  ]
}

Twilio Docs

by Twilio

Twilio's official documentation MCP server — search the docs and API specs in natural language, then pull the full parameter schema for a specific API operation before writing code against it.

Cursor configuration

Or add {"type": "http", "url": "https://mcp.twilio.com/docs"} directly under Cursor Settings > MCP

{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://mcp.twilio.com/docs"
  ]
}

Algolia's managed MCP server at mcp.algolia.com — read-only access to indices, Recommend models and search analytics over OAuth, with no API keys to manage.

Cursor configuration

Cursor also accepts a plain URL entry in .cursor/mcp.json: {"mcpServers":{"algolia":{"url":"https://mcp.algolia.com/mcp"}}}

{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://mcp.algolia.com/mcp"
  ]
}

Vapi's official MCP server for building voice agents — create assistants, place and schedule outbound phone calls, and manage phone numbers from your AI client.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@vapi-ai/mcp-server"
  ],
  "env": {
    "VAPI_TOKEN": "<your_vapi_token>"
  }
}

Contentful MCP Server

by Contentful

Contentful's official MCP server — model content types, search and edit entries, manage assets and publish, with semantic vector search over your space.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@contentful/mcp-server"
  ],
  "env": {
    "CONTENTFUL_MANAGEMENT_ACCESS_TOKEN": "<your-CMA-token>",
    "SPACE_ID": "<your-space-id>",
    "ENVIRONMENT_ID": "master"
  }
}

LINE's official MCP server for the Messaging API — push and broadcast text or Flex messages, build rich menus, read profiles, quota and follower IDs.

Cursor configuration
{
  "command": "npx",
  "args": [
    "@line/line-bot-mcp-server"
  ],
  "env": {
    "CHANNEL_ACCESS_TOKEN": "<YOUR_CHANNEL_ACCESS_TOKEN>"
  }
}

Bitwarden's official MCP server — unlock the vault, read and edit items, generate passwords and TOTP codes, and run organisation administration. Local use only.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@bitwarden/mcp-server"
  ],
  "env": {
    "BW_SESSION": "<YOUR_SESSION_TOKEN>"
  }
}

X MCP Server

by X Corp.

X's official hosted MCP server: search the full post archive, resolve users, read timelines and trends, manage bookmarks and draft articles from any MCP client.

Cursor configuration

Same xurl bridge configuration as Claude Desktop.

{
  "command": "npx",
  "args": [
    "-y",
    "@xdevplatform/xurl",
    "mcp",
    "https://api.x.com/mcp"
  ],
  "env": {
    "CLIENT_ID": "YOUR_X_APP_CLIENT_ID",
    "CLIENT_SECRET": "YOUR_X_APP_CLIENT_SECRET"
  }
}

monday.com MCP

by monday.com

monday.com's official MCP server — read and write items, boards, columns and WorkForms, either via the hosted endpoint or a local npm package.

Cursor configuration
{
  "command": "npx",
  "args": [
    "@mondaydotcomorg/monday-api-mcp@latest"
  ],
  "env": {
    "MONDAY_TOKEN": "your_monday_api_token"
  }
}

Semgrep MCP

by Semgrep

Semgrep's official MCP server — scan code for security vulnerabilities, write and test custom rules, and pull findings from Semgrep Cloud, from inside an agent session.

Cursor configuration
{
  "command": "uvx",
  "args": [
    "semgrep-mcp"
  ]
}

Snyk's official MCP server, shipped inside the Snyk CLI: scan code, dependencies, containers and IaC for vulnerabilities, generate SBOMs and monitor projects from your agent.

Cursor configuration
{
  "command": "snyk",
  "args": [
    "mcp",
    "-t",
    "stdio"
  ]
}

Pulumi's official MCP server: search your Pulumi Cloud resources, read the provider registry while generating infrastructure code, and delegate work to the Pulumi Neo agent.

Cursor configuration

Remote HTTP transport — add as {"transport": "http", "url": "https://mcp.ai.pulumi.com/mcp"} in .cursor/mcp.json

{
  "command": "http",
  "args": [
    "https://mcp.ai.pulumi.com/mcp"
  ]
}

Official Google server exposing Google Cloud Observability to agents — querying logs, metrics and traces from a Google Cloud project without leaving the assistant.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@google-cloud/observability-mcp"
  ]
}

Sanity MCP

by Sanity

Sanity's official hosted MCP server: run GROQ queries, patch and publish documents, manage releases and deploy schemas — with the agent aware of your content model.

Cursor configuration

Cursor also accepts a native HTTP entry: {"type": "http", "url": "https://mcp.sanity.io"} in mcp.json.

{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://mcp.sanity.io"
  ]
}

PagerDuty MCP

by PagerDuty

PagerDuty's official MCP server with 80+ tools for incidents, schedules, services and escalation policies — read-only by default, with write actions behind an explicit flag.

Cursor configuration

Read-only by default; append --enable-write-tools for write access.

{
  "command": "uvx",
  "args": [
    "pagerduty-mcp"
  ],
  "env": {
    "PAGERDUTY_USER_API_KEY": "${input:pagerduty-api-key}"
  }
}

Intercom MCP

by Intercom

Intercom's official remote MCP server: 13 tools for searching conversations, contacts and help-centre content so an agent can reason over real customer-support history.

Cursor configuration

Add to ~/.cursor/mcp.json or the project .cursor/mcp.json.

{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://mcp.intercom.com/mcp"
  ]
}

Brandfetch MCP

by Brandfetch

Official remote MCP server from Brandfetch that gives an agent real company logos, brand colours, fonts and merchant identification instead of guessed or hallucinated assets.

Cursor configuration

Add to your Cursor MCP configuration JSON.

{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://mcp.brandfetch.io/mcp"
  ]
}

Panda CSS MCP Server

by Panda CSS (Chakra UI)

Official Panda CSS MCP server that exposes your design system - tokens, recipes, patterns, breakpoints and the resolved config - so an agent styles components with real values.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@pandacss/mcp"
  ]
}

The official ESLint MCP server, shipped inside the ESLint CLI - lets an editor agent lint files, read rule violations and apply fixes using your project's own configuration.

Cursor configuration
{
  "command": "npx",
  "args": [
    "@eslint/mcp@latest"
  ]
}

CircleCI's official MCP server: pull build failure logs, hunt flaky tests, validate config, trigger and rerun pipelines, and roll back - in natural language from your IDE.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@circleci/mcp-server-circleci@latest"
  ],
  "env": {
    "CIRCLECI_TOKEN": "<your-circleci-personal-api-token>",
    "CIRCLECI_BASE_URL": "https://circleci.com"
  }
}

Salesforce's official MCP server: over 60 tools across 15 toolsets for reading org data, deploying metadata, running Apex tests and building Lightning Web Components.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@salesforce/mcp",
    "--orgs",
    "DEFAULT_TARGET_ORG",
    "--toolsets",
    "orgs,metadata,data,users"
  ]
}

Webflow's official MCP server — let agents read and edit sites, pages, CMS collections and items through the Webflow Data API, with a companion app that syncs the live Designer canvas.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://mcp.webflow.com/sse"
  ]
}

Microsoft's official remote MCP server for Learn documentation — semantic search over first-party Azure and .NET docs, page fetch, and verified code samples. Free, no key.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://learn.microsoft.com/api/mcp"
  ]
}

SonarQube MCP Server

by SonarSource

Official SonarSource MCP server — pull code-quality issues, security hotspots, quality gates and rule explanations from SonarQube Cloud or Server into your agent.

Cursor configuration
{
  "command": "docker",
  "args": [
    "run",
    "--init",
    "--pull=always",
    "-i",
    "--rm",
    "-e",
    "SONARQUBE_TOKEN",
    "-e",
    "SONARQUBE_ORG",
    "sonarsource/sonarqube-mcp"
  ],
  "env": {
    "SONARQUBE_TOKEN": "<YOUR_TOKEN>",
    "SONARQUBE_ORG": "<YOUR_ORG>"
  }
}

Hugging Face

by Hugging Face

Official Hugging Face MCP server: search models, datasets, Spaces and papers on the Hub, read repository files, and call Gradio apps as agent tools.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "mcp-remote",
    "https://huggingface.co/mcp?login"
  ]
}

LaunchDarkly MCP Server

by LaunchDarkly

Local MCP server for LaunchDarkly — manage feature flags, AI Configs, environments, audit logs and code references from an agent.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "--package",
    "@launchdarkly/mcp-server",
    "--",
    "mcp",
    "start",
    "--api-key",
    "$LD_ACCESS_TOKEN"
  ],
  "env": {
    "LD_ACCESS_TOKEN": "api-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
  }
}

Ships inside the Convex CLI — lets an agent inspect deployments, read table schemas, run read-only queries, call functions and check health insights.

Cursor configuration

Installing the Convex plugin for Cursor starts the server automatically.

{
  "command": "npx",
  "args": [
    "-y",
    "convex@latest",
    "mcp",
    "start"
  ]
}

Canva's official MCP server for building Canva apps — grounds an agent in the Apps SDK and App UI Kit docs instead of letting it guess the API.

Cursor configuration

Add to .cursor/mcp.json and use Agent mode.

{
  "command": "npx",
  "args": [
    "-y",
    "@canva/cli@latest",
    "mcp"
  ]
}

Official commercetools MCP server exposing products, carts, orders, customers and the rest of the Composable Commerce API as scoped, selectable agent tools.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@commercetools/commerce-mcp@latest",
    "--tools=all.read",
    "--clientId=CLIENT_ID",
    "--clientSecret=CLIENT_SECRET",
    "--authUrl=AUTH_URL",
    "--projectKey=PROJECT_KEY",
    "--apiUrl=API_URL"
  ]
}

DeepL

by DeepL

DeepL's official MCP server: translate text and whole documents, rephrase copy with a chosen style and tone, and reuse your account's glossaries and style rules.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "deepl-mcp-server"
  ],
  "env": {
    "DEEPL_API_KEY": "your-api-key"
  }
}

BrowserStack

by BrowserStack

Official BrowserStack MCP server: run manual and automated tests on real browsers and devices, then debug and fix failing tests from your IDE in plain English.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@browserstack/mcp-server@latest"
  ],
  "env": {
    "BROWSERSTACK_USERNAME": "<username>",
    "BROWSERSTACK_ACCESS_KEY": "<access_key>"
  }
}

BioMCP

by GenomOncology

Biomedical research MCP server reaching about 30 trusted sources — PubMed, ClinicalTrials.gov, ClinVar, OncoKB and Reactome — through one command grammar.

Cursor configuration
{
  "command": "biomcp",
  "args": [
    "serve"
  ]
}

wigolo

by KnockOutEZ

Local-first web MCP server for AI agents — search, fetch, crawl, extract and deep research with no API keys, no cloud round-trip and no per-query bill.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "wigolo"
  ]
}

Codanna

by Codanna

Local code intelligence MCP server that returns symbol context, call graphs and impact analysis in a single call — 15 languages, indexed on your own machine.

Cursor configuration
{
  "command": "codanna",
  "args": [
    "--config",
    ".codanna/settings.toml",
    "serve",
    "--watch"
  ]
}

XcodeBuildMCP

by Sentry

Sentry's MCP server and CLI for iOS and macOS work — build, run on simulators and devices, capture logs, and drive tests from inside a coding agent.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "xcodebuildmcp@latest",
    "mcp"
  ]
}

Netlify

by Netlify

Netlify's official MCP server, wrapping the Netlify API and CLI so agents can create projects, deploy, manage secrets, extensions and access controls.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@netlify/mcp"
  ]
}

Prisma

by Prisma

Prisma's official MCP servers — a local one for database workflows in your editor, and a remote one for managing Prisma Postgres from an AI platform.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "prisma",
    "mcp"
  ]
}

Auth0

by Auth0

Auth0's official MCP server: create applications, deploy Actions, inspect logs and manage users in your tenant through natural language.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@auth0/auth0-mcp-server",
    "run"
  ],
  "env": {
    "DEBUG": "auth0-mcp"
  }
}

Terraform

by HashiCorp

HashiCorp's official MCP server for the Terraform Registry, HCP Terraform and Terraform Enterprise — providers, modules, policies and workspace operations.

Cursor configuration
{
  "command": "docker",
  "args": [
    "run",
    "-i",
    "--rm",
    "hashicorp/terraform-mcp-server:0.2.3"
  ]
}

Wikipedia

by cyanheads

Search and read Wikipedia from an AI client — summaries, full articles, specific sections, and nearby pages.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@cyanheads/wikipedia-mcp-server"
  ]
}

PubMed

by Andy Brandt

Search PubMed's biomedical literature and read abstracts and open-access full text from an AI client.

Cursor configuration
{
  "command": "uvx",
  "args": [
    "mcp-simple-pubmed"
  ],
  "env": {
    "PUBMED_EMAIL": "you@example.com"
  }
}

arXiv

by Joseph Blazick

Search arXiv, download papers, and read their full text from an AI client — research without the PDF shuffling.

Cursor configuration
{
  "command": "uvx",
  "args": [
    "arxiv-mcp-server"
  ]
}

YouTube Data

by icraft2170

Search YouTube, read video transcripts, and pull channel statistics from an AI client.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "youtube-data-mcp-server"
  ],
  "env": {
    "YOUTUBE_API_KEY": "your-api-key"
  }
}

Upstash Redis

by Upstash

Run Redis commands against Upstash's serverless Redis over HTTP, with documentation search built in.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@upstash/redis-mcp"
  ],
  "env": {
    "UPSTASH_REDIS_REST_URL": "https://your-db.upstash.io",
    "UPSTASH_REDIS_REST_TOKEN": "your-token"
  }
}

Cloudinary

by Cloudinary

Cloudinary's official MCP server — upload, search, transform, and organise media assets from an AI client.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@cloudinary/asset-management-mcp"
  ],
  "env": {
    "CLOUDINARY_CLOUD_NAME": "your-cloud",
    "CLOUDINARY_API_KEY": "key",
    "CLOUDINARY_API_SECRET": "secret"
  }
}

Shopify Dev

by Shopify

Shopify's official developer MCP server — accurate API docs and schema introspection for building Shopify apps.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@shopify/dev-mcp"
  ]
}

Square

by Square

Square's official MCP server — manage catalog, orders, payments, customers, and inventory from an AI client.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "square-mcp-server"
  ],
  "env": {
    "ACCESS_TOKEN": "your-square-token",
    "SANDBOX": "true"
  }
}

PayPal

by PayPal

PayPal's official MCP server — create invoices, manage orders and subscriptions, and query transactions.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@paypal/mcp",
    "--tools=all"
  ],
  "env": {
    "PAYPAL_ACCESS_TOKEN": "your-access-token"
  }
}

Twilio

by Twilio

Twilio Labs' MCP server — send messages, place calls, and manage numbers across the Twilio API.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@twilio-alpha/mcp"
  ],
  "env": {
    "TWILIO_ACCOUNT_SID": "ACxxxxx",
    "TWILIO_API_KEY": "SKxxxxx",
    "TWILIO_API_SECRET": "your-secret"
  }
}

DigitalOcean

by DigitalOcean

DigitalOcean's official MCP server — deploy apps and manage Droplets, databases, and storage conversationally.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@digitalocean/mcp"
  ],
  "env": {
    "DIGITALOCEAN_API_TOKEN": "your-token"
  }
}

Heroku

by Heroku

Heroku's official MCP server — manage apps, dynos, add-ons, config, and logs from an AI client.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@heroku/mcp-server"
  ],
  "env": {
    "HEROKU_API_KEY": "your-api-key"
  }
}

AWS Labs MCP

by AWS Labs

AWS Labs' core MCP server — the entry point to AWS's official collection of service-specific MCP servers.

Cursor configuration
{
  "command": "uvx",
  "args": [
    "awslabs.core-mcp-server"
  ]
}

Azure

by Microsoft

Microsoft's official Azure MCP server — manage cloud resources and query monitoring data conversationally.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@azure/mcp",
    "server",
    "start"
  ]
}

Desktop Commander

by Eduard Ruzga

Give a desktop AI client real terminal and filesystem access — run commands and edit files across your machine.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@wonderwhy-er/desktop-commander"
  ]
}

Bright Data

by Bright Data

Bright Data's official MCP server — search, scrape, and extract web data through a large proxy network.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@brightdata/mcp"
  ],
  "env": {
    "API_TOKEN": "your-brightdata-token"
  }
}

Puppeteer

by Model Context Protocol

Browser automation for AI clients — navigate, click, type, screenshot, and run JavaScript in a real page.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@modelcontextprotocol/server-puppeteer"
  ]
}

Google Maps

by Model Context Protocol

Location services for AI clients — geocoding, place search, directions, and travel-time calculations.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@modelcontextprotocol/server-google-maps"
  ],
  "env": {
    "GOOGLE_MAPS_API_KEY": "your-api-key"
  }
}

Google Drive

by Model Context Protocol

Search and read Google Drive files — Docs, Sheets, and Slides converted to text an assistant can use.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@modelcontextprotocol/server-gdrive"
  ]
}

Obsidian

by Cal Deacon

Let an AI client read and search your Obsidian vault — or any folder of Markdown notes.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "mcp-obsidian",
    "/path/to/vault"
  ]
}

Airtable

by Domenic Rosati

Read and write Airtable bases from an AI client — records, schemas, fields, and views.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "airtable-mcp-server"
  ],
  "env": {
    "AIRTABLE_API_KEY": "pat.your-token"
  }
}

dbt

by dbt Labs

dbt Labs' official MCP server — explore project metadata, run dbt commands, and query the Semantic Layer.

Cursor configuration
{
  "command": "uvx",
  "args": [
    "dbt-mcp"
  ]
}

Milvus

by Zilliz

Search and manage Milvus vector collections from an AI client — vector, full-text, and hybrid queries.

Cursor configuration
{
  "command": "uvx",
  "args": [
    "mcp-server-milvus",
    "--milvus-uri",
    "http://localhost:19530"
  ]
}

Pinecone

by Pinecone

Pinecone's official MCP server — search and manage vector indexes, and query Pinecone's docs while you build.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@pinecone-database/mcp"
  ],
  "env": {
    "PINECONE_API_KEY": "your-api-key"
  }
}

Chroma

by Chroma

Chroma's official MCP server — build and query vector collections directly from an AI client.

Cursor configuration
{
  "command": "uvx",
  "args": [
    "chroma-mcp",
    "--client-type",
    "persistent",
    "--data-dir",
    "./chroma"
  ]
}

Qdrant

by Qdrant

Qdrant's official MCP server — semantic memory for AI assistants backed by a real vector database.

Cursor configuration
{
  "command": "uvx",
  "args": [
    "mcp-server-qdrant"
  ],
  "env": {
    "QDRANT_URL": "http://localhost:6333",
    "COLLECTION_NAME": "my-collection"
  }
}

MotherDuck / DuckDB

by MotherDuck

Run DuckDB analytics locally or in MotherDuck's cloud — query files and warehouses with the same SQL.

Cursor configuration
{
  "command": "uvx",
  "args": [
    "mcp-server-motherduck",
    "--db-path",
    "md:"
  ]
}

Neo4j Cypher

by Neo4j

Query Neo4j graph databases in natural language — the assistant reads your schema and writes the Cypher.

Cursor configuration
{
  "command": "uvx",
  "args": [
    "mcp-neo4j-cypher"
  ],
  "env": {
    "NEO4J_URI": "bolt://localhost:7687",
    "NEO4J_USERNAME": "neo4j",
    "NEO4J_PASSWORD": "password"
  }
}

Elasticsearch

by Elastic

Elastic's official MCP server — explore indexes, inspect mappings, and query Elasticsearch conversationally.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@elastic/mcp-server-elasticsearch"
  ],
  "env": {
    "ES_URL": "https://localhost:9200",
    "ES_API_KEY": "your-api-key"
  }
}

Redis

by Redis

Redis's official MCP server — read and write every Redis data structure, including vector search and streams.

Cursor configuration
{
  "command": "uvx",
  "args": [
    "redis-mcp-server"
  ],
  "env": {
    "REDIS_HOST": "127.0.0.1",
    "REDIS_PORT": "6379"
  }
}

Neon

by Neon

Neon's official MCP server — manage serverless Postgres projects, branch databases, and run migrations.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@neondatabase/mcp-server-neon",
    "start",
    "<neon-api-key>"
  ]
}

SQLite

by Model Context Protocol

Query, modify, and analyse a local SQLite database file directly from an AI client.

Cursor configuration
{
  "command": "uvx",
  "args": [
    "mcp-server-sqlite",
    "--db-path",
    "~/data.db"
  ]
}

PostgreSQL

by Model Context Protocol

Read-only PostgreSQL access with automatic schema inspection — the reference MCP server for Postgres.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@modelcontextprotocol/server-postgres",
    "postgresql://localhost/mydb"
  ]
}

Snowflake

by Snowflake Labs

Snowflake Labs' MCP server — query the warehouse, use Cortex search and analyst, and manage objects.

Cursor configuration
{
  "command": "uvx",
  "args": [
    "snowflake-labs-mcp",
    "--service-config-file",
    "tools_config.yaml"
  ]
}

ClickHouse

by ClickHouse

ClickHouse's official MCP server — run analytical SQL, explore schemas, and query local files with chDB.

Cursor configuration
{
  "command": "uvx",
  "args": [
    "mcp-clickhouse"
  ],
  "env": {
    "CLICKHOUSE_HOST": "localhost",
    "CLICKHOUSE_USER": "default",
    "CLICKHOUSE_PASSWORD": ""
  }
}

Chrome DevTools MCP

by Google Chrome DevTools team

Google's official MCP server for driving and inspecting a real Chrome browser — automation, debugging, and performance traces.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "chrome-devtools-mcp@latest"
  ]
}

Context7

by Upstash

Pulls up-to-date, version-specific documentation and code examples for libraries straight into your prompt.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@upstash/context7-mcp"
  ]
}

Playwright

by Microsoft

Browser automation for agents — navigate, click, type, and read pages using Playwright's accessibility tree, no screenshots required.

Cursor configuration
{
  "command": "npx",
  "args": [
    "@playwright/mcp@latest"
  ]
}

Filesystem

by Model Context Protocol

Secure local file operations for agents — read, write, search, and edit files within configurable allowed directories.

Cursor configuration
{
  "command": "npx",
  "args": [
    "-y",
    "@modelcontextprotocol/server-filesystem",
    "/path/to/allowed/dir"
  ]
}

Browse all MCP servers →