mcp-server-dumplingai

A Model Context Protocol (MCP) server implementation that connects AI assistants like Claude to Dumpling AI's powerful search and web tools API.

Visit Server
Added on 3/28/2025

Dumpling AI MCP Server ๐Ÿ”

A Model Context Protocol (MCP) server implementation that connects AI assistants like Claude to Dumpling AI's powerful search and web tools API.

What is MCP? ๐Ÿค”

The Model Context Protocol (MCP) is a system that lets AI applications connect to external tools and data sources. It provides a clear and safe way for AI assistants to work with local services and APIs while keeping the user in control.

Features โœจ

This MCP server provides the following tools:

  • get-youtube-transcript: Fetch transcripts from YouTube videos
  • search: Perform Google web searches and optionally scrape content from results
  • get-autocomplete: Get Google search autocomplete suggestions
  • search-maps: Perform Google Maps searches
  • search-places: Perform Google Places searches
  • search-news: Perform Google News searches
  • get-google-reviews: Fetch Google reviews for a place

Prerequisites ๐Ÿ“‹

Before you begin, ensure you have:

Installation ๐Ÿ› ๏ธ

NPM Installation

npm install -g mcp-server-dumplingai

Manual Installation

  1. Clone the repository:
git clone https://github.com/Dumpling-AI/mcp-server-dumplingai.git
cd mcp-server-dumplingai
  1. Install dependencies:
npm install
  1. Build the project:
npm run build

Configuration โš™๏ธ

Environment Variables

  • DUMPLING_API_KEY: Your Dumpling AI API key (required)

Configuring with Claude Desktop

  1. Open your Claude Desktop configuration:
# macOS
code ~/Library/Application\ Support/Claude/claude_desktop_config.json

# Windows
code %APPDATA%\Claude\claude_desktop_config.json
  1. Add the Dumpling AI server configuration:
{
  "mcpServers": {
    "dumplingai": {
      "command": "npx",
      "args": ["mcp-server-dumplingai"],
      "env": {
        "DUMPLING_API_KEY": "your-api-key-here"
      }
    }
  }
}
  1. Restart Claude Desktop for the changes to take effect.

Usage ๐ŸŽฏ

Once configured, you can ask Claude to use Dumpling AI tools. Here are some example prompts:

Can you fetch and summarize the transcript from this YouTube video: https://www.youtube.com/watch?v=dQw4w9WgXcQ
Search for recent developments in quantum computing and summarize the key findings.
What are the most popular places to visit in New York according to Google Maps?

Troubleshooting ๐Ÿ”ง

Common Issues

  1. API Key Issues

    • Confirm your DUMPLING_API_KEY is valid
    • Check the DUMPLING_API_KEY is correctly set in your configuration
    • Verify there are no spaces or quotes around the API key
  2. Connection Issues

    • Restart Claude Desktop completely
    • Check Claude Desktop logs

License

ISC