Metaso Search MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Metaso Search MCP Serverfind recent papers on quantum computing"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Metaso Search MCP Server | 秘塔搜索 MCP 服务器
MCP server for Metaso Search API, providing search and web reader tools over stdio.
基于秘塔搜索 API 的 MCP 服务器,通过 stdio 提供搜索与网页读取能力。
Features | 功能
metaso_search: multi-scope search (webpage,document,paper,image,video,podcast)metaso_reader: read webpage content inmarkdownorjsonnpm-ready package with CI/CD publish workflow
npxconfig generator for Cherry Studio / Cursor / Claude / generic MCP clients
Related MCP server: bocha-mcp
Install | 安装
From npm (recommended) | npm 安装(推荐)
npm install -g metaso-search-mcpFrom source | 源码安装
git clone https://github.com/SecretRichGarden/metasota-API-MCP.git
cd metasota-API-MCP
npm install
npm run buildMCP stdio Config | MCP 标准配置
ModelScope/Smithery style (command: npx, args: [package]):
{
"mcpServers": {
"metaso-search-mcp": {
"command": "npx",
"args": ["metaso-search-mcp"],
"env": {
"METASO_API_KEY": "mk-你的API密钥"
}
}
}
}Local deployment (built from source, run dist/index.js) template:
{
"mcpServers": {
"metaso-search-mcp-local": {
"command": "node",
"args": ["E:\\\\Development\\\\metasota-API-MCP\\\\dist\\\\index.js"],
"env": {
"METASO_API_KEY": "mk-your-api-key"
}
}
}
}macOS/Linux path example:
{
"mcpServers": {
"metaso-search-mcp-local": {
"command": "node",
"args": ["/path/to/metasota-API-MCP/dist/index.js"],
"env": {
"METASO_API_KEY": "mk-your-api-key"
}
}
}
}One-command Config Generator | 一键生成配置
Print config JSON:
npx -y -p metaso-search-mcp metaso-mcp-config --client generic --api-key mk-你的API密钥 --printWrite/merge into a target config file:
npx -y -p metaso-search-mcp metaso-mcp-config --client cherry --api-key mk-你的API密钥 --output ./mcp-config.jsonNotes:
--outputwill merge into existingmcpServersinstead of overwriting all servers.Default server key is
metaso-search-mcp; change with--server-name.
API Key & Env Parameters | API Key 与环境变量
Required | 必填:
METASO_API_KEY: Metaso API key / 秘塔 API 密钥
Optional | 可选:
METASO_BASE_URL(default:https://metaso.cn/api/v1)METASO_TIMEOUT(default:60000)METASO_DEFAULT_SEARCH_SCOPE(webpage|document|paper|image|video|podcast)METASO_DEFAULT_SEARCH_SIZE(1-100, default10)METASO_DEFAULT_INCLUDE_SUMMARY(true|false)METASO_DEFAULT_INCLUDE_RAW_CONTENT(true|false)METASO_DEFAULT_CONCISE_SNIPPET(true|false)METASO_DEFAULT_READER_FORMAT(markdown|json)
Local env setup:
cp .env.example .env
# then edit .env and fill METASO_API_KEYnpm Scripts | 脚本
npm run typecheck
npm run build
npm run rebuild
npm run release:check
npm run pack:dry
npm run pack:localAuto Publish to npm (GitHub Actions) | 自动发布 npm
Workflow: .github/workflows/release-npm.yml
Add repository secret
NPM_TOKENin GitHub Actions secrets.Push a version tag:
git tag v1.0.1
git push origin v1.0.1Platform Publishing Docs | 平台发布文档
See docs/PLATFORM_PUBLISHING.md for:
Smithery submission checklist
ModelScope (魔塔社区) submission checklist
npx stdio config snippet for platform pages
License
MIT
Available Tools
2 toolsmetaso_readerA
读取指定URL的网页内容并转换为结构化格式。
支持的输出格式:
markdown: 返回Markdown格式的网页内容 (默认)
json: 返回JSON格式,包含标题、URL、内容等结构化信息
适用场景:
提取新闻文章内容
获取网页正文
将网页转换为可读格式
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | 要读取的网页URL (必填) | |
| format | No | 输出格式 | markdown |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses the core behavior (reads URL and converts format) and the output formats, which implies a read-only operation. However, it does not mention potential failure modes, restrictions (e.g., paywall, JavaScript-heavy pages), rate limits, or authentication needs. Since the tool seems simple and read-only, a 3 is appropriate—it adds some context but lacks depth.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured: an initial statement, a bulleted list of formats, and a bulleted list of use cases. Every sentence adds value, with no redundant phrases. It is appropriately sized and easy to scan.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple (2 params, no nested objects, no output schema), and the description covers purpose, formats, defaults, and use cases. It lacks explicit notes on error handling or limitations, but given the low complexity and clear schema, the description is largely complete. A 4 acknowledges minor missing behavioral context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already covers both parameters with descriptions and the enum for format; schema coverage is 100%. The description adds a list of supported output formats and default, but this largely duplicates the schema's 'default' field. The description does not provide additional meaning beyond the schema, so baseline 3 is fair.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly specifies that the tool reads a given URL's web content and converts it to structured formats (markdown/json). The verb '读取' and resource 'URL的网页内容' are specific, and the mention of structured output distinguishes it from a generic fetch tool. However, it does not explicitly contrast with the sibling tool 'metaso_search' (which likely searches), so it stops short of a 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description lists concrete applicable scenarios such as extracting news articles, getting main body text, and converting pages to readable format. This provides clear context for when to use the tool. It does not explicitly exclude cases (e.g., 'do not use for search' or 'only for public pages'), but the scenarios are sufficient for basic guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
metaso_searchA
使用秘塔AI搜索进行多维度搜索。
支持的搜索范围 (scope):
webpage: 网页搜索 (默认)
document: 文库搜索
paper: 学术论文搜索
image: 图片搜索
video: 视频搜索
podcast: 播客/博客搜索
特色功能:
includeSummary: 通过网页摘要增强召回
includeRawContent: 抓取来源网页原文
conciseSnippet: 返回精简的原文匹配信息
| Name | Required | Description | Default |
|---|---|---|---|
| q | Yes | 搜索查询关键词 (必填) | |
| size | No | 返回结果数量 (1-100),默认: 10 | |
| scope | No | 搜索范围 | webpage |
| conciseSnippet | No | 是否返回精简的原文匹配信息 | |
| includeSummary | No | 是否通过网页摘要增强召回,可获取综合摘要 | |
| includeRawContent | No | 是否抓取所有来源网页原文 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations, so the description carries the disclosure burden. It mentions optional behaviors like includeSummary, includeRawContent, and conciseSnippet, which is helpful, but these mostly restate schema information. It does not disclose limitations, rate limits, or result-format expectations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and well-structured with clear sections for scopes and features, front-loaded with a one-sentence summary. It avoids fluff, though the feature list overlaps with schema descriptions.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with six parameters and no output schema, the description covers all input options, scopes, and feature behaviors sufficiently for correct invocation. It lacks explicit output format details, but for a search tool the return type is reasonably inferred and no output schema is required.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds value by explaining the meaning of each scope enum value and clarifying the effects of the boolean flags, which the schema's generic '搜索范围' description does not convey.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it performs multi-dimensional search using Metaso AI, and enumerates supported scopes (webpage, document, paper, image, video, podcast). It distinguishes from the sibling metaso_reader by focusing on search, though it does not explicitly contrast with it.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context about the available scopes and default behavior, which implies how to choose a search type. However, it offers no explicit guidance on when to use this tool instead of metaso_reader, nor any when-not-to-use or exclusion criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
2 tool updates
v1.1.2- First observed
metaso_reader - First observed
metaso_search
TDQS
Scored across 2 tools
The two tools have clearly distinct purposes: one performs searches across multiple scopes, and the other reads and converts a specific URL. There is no ambiguity between them.
Both tools follow the same 'metaso_' prefix and use underscore-separated lowercase words. The naming pattern is consistent and predictable.
With only two tools, the set is at the low end of acceptable. For a search-and-read server, the minimalism is defensible, but it feels slightly thin compared to a typical well-scoped server.
The search tool covers diverse scopes (web, documents, papers, images, videos, podcasts) and the reader handles URL content extraction. Together they cover the core search-and-read pipeline, though advanced features like search history or saved results are missing.
Maintenance
Related MCP Connectors
MCP server for Russian books search, details, and recommendation candidates.
MCP server for Google search results via SERP API
MCP server for searching Airweave collections with natural language queries.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceMCP server that enables web search via DuckDuckGo and readable content extraction from HTML pages using FastMCP.-
- FlicenseAqualityCmaintenanceMCP server for Bocha Search API, enabling web search and AI-powered search with customizable parameters like result count, freshness, and summaries.21-
- FlicenseNot gradedqualityCmaintenanceMCP server providing web search, news search, and X/Twitter search capabilities via HTTP or stdio.-
- AlicenseAqualityBmaintenanceA production-ready MCP server for free web search, news search, and webpage content extraction using DuckDuckGo and Bing.419MIT