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.
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:
- Node.js (v18 or higher)
- An Dumpling AI API key
Installation ๐ ๏ธ
NPM Installation
npm install -g mcp-server-dumplingai
Manual Installation
- Clone the repository:
git clone https://github.com/Dumpling-AI/mcp-server-dumplingai.git
cd mcp-server-dumplingai
- Install dependencies:
npm install
- Build the project:
npm run build
Configuration โ๏ธ
Environment Variables
DUMPLING_API_KEY: Your Dumpling AI API key (required)
Configuring with Claude Desktop
- Open your Claude Desktop configuration:
# macOS
code ~/Library/Application\ Support/Claude/claude_desktop_config.json
# Windows
code %APPDATA%\Claude\claude_desktop_config.json
- Add the Dumpling AI server configuration:
{
"mcpServers": {
"dumplingai": {
"command": "npx",
"args": ["mcp-server-dumplingai"],
"env": {
"DUMPLING_API_KEY": "your-api-key-here"
}
}
}
}
- 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
-
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
-
Connection Issues
- Restart Claude Desktop completely
- Check Claude Desktop logs
License
ISC
Similar Resources
Developer Tools