饺子AI平台

@Dumpling-AI/mcp-server-dumplingai
0 Stars 19 次浏览 Dumpling-AI 更新于 2026-08-23

集成 Dumpling AI,通过网络交互、文档处理和人工智能服务等工具,提供数据抓取、内容处理、知识管理和代码执行能力。

MCP 服务配置

复制以下 JSON 到 OPClaw 或其他 MCP 客户端的配置文件中即可使用

{
  "mcpServers": {
    "dumplingai": {
      "args": [
        "-y",
        "mcp-server-dumplingai"
      ],
      "command": "npx",
      "env": {
        "DUMPLING_API_KEY": "\u003cyour-api-key\u003e"
      }
    }
  }
}

该服务需要配置环境变量:DUMPLING_API_KEY

服务介绍

Dumpling AI MCP 服务器

这是一个与 Dumpling AI 集成的模型上下文协议 (MCP) 服务器实现,用于数据抓取、内容处理、知识管理、AI 代理和代码执行功能。

smithery 徽章

特性

  • 与所有 Dumpling AI API 端点完全集成
  • 数据 API 包括 YouTube 字幕、搜索、自动完成、地图、地点、新闻和评论
  • 支持抓取、爬虫、截图和结构化数据提取的网页抓取
  • 文档转换工具,包括文本提取、PDF 操作和视频处理
  • 从文档、图片、音频和视频中提取数据
  • AI 功能,包括代理补全、知识库管理和图像生成
  • 开发者工具,用于在安全环境中运行 JavaScript 和 Python 代码
  • 自动错误处理和详细的响应格式

安装

通过 Smithery 安装

要通过 Smithery 自动为 Claude Desktop 安装 mcp-server-dumplingai:

npx -y @smithery/cli install @Dumpling-AI/mcp-server-dumplingai --client claude

使用 npx 运行

env DUMPLING_API_KEY=your_api_key npx -y mcp-server-dumplingai

手动安装

npm install -g mcp-server-dumplingai

在 Cursor 上运行

配置 Cursor 🖥️ 注意:需要 Cursor 版本 0.45.6+

要配置 Dumpling AI MCP 在 Cursor 中:

  1. 打开 Cursor 设置
  2. 转到功能 > MCP 服务器
  3. 单击“+ 添加新的 MCP 服务器”
  4. 输入以下内容:
{
  "mcpServers": {
    "dumplingai": {
      "command": "npx",
      "args": ["-y", "mcp-server-dumplingai"],
      "env": {
        "DUMPLING_API_KEY": "<your-api-key>"
      }
    }
  }
}

如果您使用的是 Windows 并且遇到问题,请尝试 cmd /c "set DUMPLING_API_KEY=your-api-key && npx -y mcp-server-dumplingai"

your-api-key 替换为您的 Dumpling AI API 密钥。

配置

环境变量

  • DUMPLING_API_KEY:您的 Dumpling AI API 密钥(必需)

可用工具

数据 API

1. 获取 YouTube 字幕 (get-youtube-transcript)

从 YouTube 视频中提取字幕,可选带时间戳。

{
  "name": "get-youtube-transcript",
  "arguments": {
    "videoUrl": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
    "includeTimestamps": true,
    "timestampsToCombine": 3,
    "preferredLanguage": "en"
  }
}

执行 Google 网页搜索,并可选择从结果中抓取内容。

{
  "name": "search",
  "arguments": {
    "query": "machine learning basics",
    "country": "us",
    "language": "en",
    "dateRange": "pastMonth",
    "scrapeResults": true,
    "numResultsToScrape": 3,
    "scrapeOptions": {
      "format": "markdown",
      "cleaned": true
    }
  }
}

3. 获取自动完成 (get-autocomplete)

获取 Google 搜索自动完成建议。

{
  "name": "get-autocomplete",
  "arguments": {
    "query": "how to learn",
    "country": "us",
    "language": "en",
    "location": "New York"
  }
}

4. 地图搜索 (search-maps)

在 Google 地图上搜索位置和商家。

{
  "name": "search-maps",
  "arguments": {
    "query": "coffee shops",
    "gpsPositionZoom": "37.7749,-122.4194,14z",
    "language": "en",
    "page": 1
  }
}

5. 地点搜索 (search-places)

搜索具有更详细信息的地点。

{
  "name": "search-places",
  "arguments": {
    "query": "hotels in paris",
    "country": "fr",
    "language": "en",
    "page": 1
  }
}

6. 新闻搜索 (search-news)

搜索具有自定义参数的新闻文章。

{
  "name": "search-news",
  "arguments": {
    "query": "climate change",
    "country": "us",
    "language": "en",
    "dateRange": "pastWeek"
  }
}

7. 获取 Google 评论 (get-google-reviews)

检索企业或地点的 Google 评论。

{
  "name": "get-google-reviews",
  "arguments": {
    "businessName": "Eiffel Tower",
    "location": "Paris, France",
    "limit": 10,
    "sortBy": "relevance"
  }
}

网页抓取

8. 抓取 (scrape)

从网页中提取内容并进行格式化。

{
  "name": "scrape",
  "arguments": {
    "url": "https://example.com",
    "format": "markdown",
    "cleaned": true,
    "renderJs": true
  }
}

9. 爬取 (crawl)

递归地爬取网站并提取内容,具有可自定义的参数。

{
  "name": "crawl",
  "arguments": {
    "baseUrl": "https://example.com",
    "maxPages": 10,
    "crawlBeyondBaseUrl": false,
    "depth": 2,
    "scrapeOptions": {
      "format": "markdown",
      "cleaned": true,
      "renderJs": true
    }
  }
}

10. 截图 (screenshot)

捕获网页截图,具有可自定义的视口和格式选项。

{
  "name": "screenshot",
  "arguments": {
    "url": "https://example.com",
    "width": 1280,
    "height": 800,
    "fullPage": true,
    "format": "png",
    "waitFor": 1000
  }
}

11. 提取 (extract)

从网页中提取结构化数据。

{
  "name": "extract",
  "arguments": {
    "url": "https://example.com/products",
    "instructions": "Extract all product names, prices, and descriptions from this page",
    "schema": {
      "products": [
        {
          "name": "string",
          "price": "number",
          "description": "string"
        }
      ]
    },
    "renderJs": true
  }
}

使用AI驱动的指令从网页中提取结构化数据。

{
  "name": "extract",
  "arguments": {
    "url": "https://example.com/products",
    "instructions": "Extract all product names, prices, and descriptions from this page",
    "schema": {
      "products": [
        {
          "name": "string",
          "price": "number",
          "description": "string"
        }
      ]
    },
    "renderJs": true
  }
}

文档转换

12. 文档转文本 (doc-to-text)

将文档转换为纯文本,可选OCR。

{
  "name": "doc-to-text",
  "arguments": {
    "url": "https://example.com/document.pdf",
    "options": {
      "ocr": true,
      "language": "en"
    }
  }
}

13. 转换为PDF (convert-to-pdf)

将各种文件格式转换为PDF。

{
  "name": "convert-to-pdf",
  "arguments": {
    "url": "https://example.com/document.docx",
    "format": "docx",
    "options": {
      "quality": 90,
      "pageSize": "A4",
      "margin": 10
    }
  }
}

14. 合并PDF (merge-pdfs)

将多个PDF合并成一个文档。

{
  "name": "merge-pdfs",
  "arguments": {
    "urls": ["https://example.com/doc1.pdf", "https://example.com/doc2.pdf"],
    "options": {
      "addPageNumbers": true,
      "addTableOfContents": true
    }
  }
}

15. 剪辑视频 (trim-video)

从视频中提取特定片段。

{
  "name": "trim-video",
  "arguments": {
    "url": "https://example.com/video.mp4",
    "startTime": 30,
    "endTime": 60,
    "output": "mp4",
    "options": {
      "quality": 720,
      "fps": 30
    }
  }
}

16. 提取文档内容 (extract-document)

从各种格式的文档中提取特定内容。

{
  "name": "extract-document",
  "arguments": {
    "url": "https://example.com/document.pdf",
    "format": "structured",
    "options": {
      "ocr": true,
      "language": "en",
      "includeMetadata": true
    }
  }
}

17. 提取图像信息 (extract-image)

从图像中提取文本和信息。

{
  "name": "extract-image",
  "arguments": {
    "url": "https://example.com/image.jpg",
    "extractionType": "text",
    "options": {
      "language": "en",
      "detectOrientation": true
    }
  }
}

18. 提取音频信息 (extract-audio)

转录并从音频文件中提取信息。

{
  "name": "extract-audio",
  "arguments": {
    "url": "https://example.com/audio.mp3",
    "language": "en",
    "options": {
      "model": "enhanced",
      "speakerDiarization": true,
      "wordTimestamps": true
    }
  }
}

19. 提取视频内容 (extract-video)

从视频中提取内容,包括字幕、场景和对象。

{
  "name": "extract-video",
  "arguments": {
    "url": "https://example.com/video.mp4",
    "extractionType": "transcript",
    "options": {
      "language": "en",
      "speakerDiarization": true
    }
  }
}

20. 读取PDF元数据 (read-pdf-metadata)

从PDF文件中提取元数据。

{
  "name": "read-pdf-metadata",
  "arguments": {
    "url": "https://example.com/document.pdf",
    "includeExtended": true
  }
}

21. 写入PDF元数据 (write-pdf-metadata)

更新PDF文件中的元数据。

{
  "name": "write-pdf-metadata",
  "arguments": {
    "url": "https://example.com/document.pdf",
    "metadata": {
      "title": "New Title",
      "author": "John Doe",
      "keywords": ["keyword1", "keyword2"]
    }
  }
}

AI

22. 生成代理完成 (generate-agent-completion)

获取AI代理完成,可选工具定义。

{
  "name": "generate-agent-completion",
  "arguments": {
    "prompt": "How can I improve my website's SEO?",
    "model": "gpt-4",
    "temperature": 0.7,
    "maxTokens": 500,
    "context": ["The website is an e-commerce store selling handmade crafts."]
  }
}

23. 搜索知识库 (search-knowledge-base)

在知识库中搜索相关信息。

{
  "name": "search-knowledge-base",
  "arguments": {
    "kbId": "kb_12345",
    "query": "How to optimize database performance",
    "limit": 5,
    "similarityThreshold": 0.7
  }
}

24. 添加到知识库 (add-to-knowledge-base)

向知识库添加条目。

{
  "name": "add-to-knowledge-base",
  "arguments": {
    "kbId": "kb_12345",
    "entries": [
      {
        "text": "MongoDB is a document-based NoSQL database.",
        "metadata": {
          "source": "MongoDB documentation",
          "category": "databases"
        }
      }
    ],
    "upsert": true
  }
}

25. 生成AI图像 (generate-ai-image)

使用AI模型生成图像。

{
  "name": "generate-ai-image",
  "arguments": {
    "prompt": "A futuristic city with flying cars and neon lights",
    "width": 1024,
    "height": 1024,
    "numImages": 1,
    "quality": "hd",
    "style": "photorealistic"
  }
}

26. 生成图像 (generate-image)

使用各种AI提供商生成图像。

{
  "name": "generate-image",
  "arguments": {
    "prompt": "A golden retriever in a meadow of wildflowers",
    "provider": "dalle",
    "width": 1024,
    "height": 1024,
    "numImages": 1
  }
}

开发者工具

27. 运行JavaScript代码 (run-js-code)

执行JavaScript代码,可选依赖项。

{
  "name": "run-js-code",
  "arguments": {
    "code": "const result = [1, 2, 3, 4].reduce((sum, num) => sum + num, 0); console.log(`Sum: ${result}`); return result;",
    "dependencies": {
      "lodash": "^4.17.21"
    },
    "timeout": 5000
  }
}

28. 运行Python代码 (run-python-code)

执行Python代码,可选依赖项。

{
  "name": "run-python-code",
  "arguments": {
    "code": "import numpy as np\narr = np.array([1, 2, 3, 4, 5])\nmean = np.mean(arr)\nprint(f'Mean: {mean}')\nreturn mean",
    "dependencies": ["numpy", "pandas"],
    "timeout": 10000,
    "saveOutputFiles": true
  }
}

错误处理

服务器提供强大的错误处理:

  • 带有HTTP状态码的详细错误消息
  • API密钥验证
  • 使用Zod模式进行输入验证
  • 具有描述性消息的网络错误处理

示例错误响应:

{
  "content": [
    {
      "type": "text",
      "text": "Error: Failed to fetch YouTube transcript: 404 Not Found"
    }
  ],
  "isError": true
}

开发

# Install dependencies
npm install

# Build
npm run build

许可证

MIT许可证 - 详情请参阅LICENSE文件