MCP Directory

How to add Dumpling AI MCP Server to Cursor

Data scraping, document conversion, AI agents, and code execution via the Dumpling AI API. Paste the config into ~/.cursor/mcp.json and restart Cursor.

Last updated June 14, 2026 · 30 · stdio · apikey

Cursor config for Dumpling AI MCP Server

env DUMPLING_API_KEY=your_api_key npx -y mcp-server-dumplingai
{
  "mcpServers": {
    "dumpling-ai-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-server-dumplingai"
      ],
      "env": {
        "DUMPLING_API_KEY": "<your-api-key>"
      }
    }
  }
}

Setup steps

  1. 1Open Cursor → Settings → MCP → Add new MCP server (or edit ~/.cursor/mcp.json directly).
  2. 2Paste the Dumpling AI MCP Server config below into the "mcpServers" object.
  3. 3Fill in placeholder secrets, then save.
  4. 4Cursor reloads MCP servers automatically — check Settings → MCP for a green status dot.
  5. 5Ask Cursor to use one of Dumpling AI MCP Server's tools to confirm it's connected.

Before you start

  • Node.js with npx
  • A Dumpling AI API key (DUMPLING_API_KEY)

What Dumpling AI MCP Server can do in Cursor

get-youtube-transcript

Extract transcripts from YouTube videos with optional timestamps.

search

Perform Google web searches and optionally scrape content from results.

get-autocomplete

Get Google search autocomplete suggestions for a query.

search-maps

Search Google Maps for locations and businesses.

search-places

Search for places with more detailed information.

search-news

Search for news articles with customizable parameters.

get-google-reviews

Retrieve Google reviews for businesses or places.

scrape

Extract content from a web page with formatting options.

Security

Requires a Dumpling AI API key supplied via the DUMPLING_API_KEY environment variable. The run-js-code and run-python-code tools execute arbitrary code in Dumpling AI's sandboxed environment.

Dumpling AI MCP Server + Cursor FAQ

Where is the Cursor config file?

Cursor reads MCP servers from ~/.cursor/mcp.json. Paste the Dumpling AI MCP Server config there under the "mcpServers" key and restart the client.

Is Dumpling AI MCP Server safe to use with Cursor?

Requires a Dumpling AI API key supplied via the DUMPLING_API_KEY environment variable. The run-js-code and run-python-code tools execute arbitrary code in Dumpling AI's sandboxed environment.

How do I authenticate?

Set the DUMPLING_API_KEY environment variable to your Dumpling AI API key; it is required for all tools.

How do I install it for Claude Desktop?

Use Smithery: npx -y @smithery/cli install @Dumpling-AI/mcp-server-dumplingai --client claude, or run it directly with npx and the DUMPLING_API_KEY env var.

Does it work with Cursor?

Yes. Cursor 0.45.6+ is required. Add an mcpServers entry running npx -y mcp-server-dumplingai with the DUMPLING_API_KEY env var.

View repo Full Dumpling AI MCP Server page