Skip to main content
Glama

Fluxio MCP

License: MIT Python CI

信息获取 MCP Server:解析 RSS/Atom 订阅源、抓取并提取网页正文,让 Claude / Cursor / 各类 Agent 直接读取任意信息源,无需自建爬虫。

基于 FastMCP 实现,纯 Python、零后端依赖,即装即用。

架构

flowchart LR
    A[Claude Desktop / Cursor / Agent] -- MCP stdio --> B[fluxio-mcp Server]
    B -- Tools --> C[fetch_rss]
    B -- Tools --> D[fetch_web]
    B -- Tools --> E[fetch_web_md]
    B -- Tools --> F[search_web]
    B -- Tools --> G[fetch_urls]
    B -- Resource --> G2["rss://{url}"]
    C -- HTTP --> H[RSS/Atom 订阅源]
    D -- HTTP --> I[任意网页]
    E -- HTTP --> I
    F -- HTTP --> J[Bing / DuckDuckGo]
    G -- HTTP --> I
  • fetch_rss(url, limit):解析 RSS 2.0 / Atom,返回文章列表(标题/链接/时间/摘要)

  • fetch_web(url, max_chars):抓取网页并提取正文纯文本,自动去除导航/脚本/样式噪音

  • fetch_web_md(url, max_chars):抓取网页并转换为 Markdown(保留标题层级/列表/代码块/链接/图片/表格)

  • search_web(query, max_results)网页搜索(Bing 主端点国内可直连,DuckDuckGo 海外降级,免 API Key)

  • fetch_urls(urls, mode, max_chars)批量抓取(最多 5 个 URL,单点失败隔离,text/markdown 双模式)

  • rss://{url}:订阅源资源,rss://<地址> 返回最近 15 篇

Related MCP server: gander

快速开始

# 1. 安装
pip install -e .

# 2. 以 stdio 模式启动(MCP 客户端默认方式)
fluxio-mcp
# 或
python -m fluxio_mcp

接入 Claude Desktop

编辑 claude_desktop_config.json

{
  "mcpServers": {
    "fluxio": {
      "command": "fluxio-mcp",
      "args": []
    }
  }
}

接入 Cursor

Cursor Settings → MCP → Add new MCP Server

Command: fluxio-mcp

命令行试运行

python - <<'PY'
from fluxio_mcp.server import fetch_rss, fetch_web
print(fetch_rss("https://www.ruanyifeng.com/blog/atom.xml", limit=3))
print(fetch_web("https://www.plbear.com/"))
PY

示例输出

> fetch_rss("https://www.plbear.com/index.xml", limit=5)

订阅源:https://www.plbear.com/index.xml
1. 用 Go 重写核心服务……
   链接:https://www.plbear.com/posts/...
   时间:...
   摘要:...

项目结构

src/fluxio_mcp/
├── server.py     # FastMCP Server:工具/资源定义
├── rss.py        # RSS/Atom 解析(标准库 xml.etree,兼容命名空间)
└── web.py        # 网页抓取(httpx)+ 正文提取(BeautifulSoup)
tests/            # pytest 单测(RSS/Atom 解析、噪音清洗、截断、异常)
.github/          # GitHub Actions CI(多 Python 版本自动跑测试)

测试

pip install -e .[dev]
pytest

CI 会在每次 push/PR 时对 Python 3.10/3.11/3.12 自动运行全部测试。

Roadmap

  • search_web:网页搜索工具(Bing 主端点 + DuckDuckGo 降级,免 API Key)

  • 网页转 Markdown(保留标题层级/列表/代码块/图片/表格)

  • 多 URL 批量抓取(fetch_urls:单点失败隔离,text/markdown 双模式)

  • 发布到 PyPI

License

MIT

Available Tools

5 tools
fetch_rssFetch RssA

解析 RSS/Atom 订阅源,返回文章列表(标题/链接/发布时间/摘要)。

参数: url: RSS/Atom 订阅地址,如 https://www.ruanyifeng.com/blog/atom.xml limit: 最多返回的文章条数

返回: 纯文本文章列表,每篇包含 标题、链接、发布时间、摘要。

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYes
limitNo最多返回文章数,1-50,默认 15

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. It discloses that the tool parses feeds and returns a plain-text article list with specific fields, which is useful. However, it does not mention error behavior, network timeouts, authentication needs, or the fact that malformed/non-feed URLs will be rejected.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and well-structured with separate sections for purpose, parameters, and return value. Every sentence provides useful information, and the most important operation is stated first.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

This is a simple tool with only two parameters, an output schema, and a clear return-value description. The description is sufficient for correct invocation. It could be more complete by mentioning that only valid RSS/Atom sources are supported, but this is largely implied and not a serious gap.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 50% because the 'url' parameter has no schema description. The description compensates by explaining the URL parameter and providing a concrete example URL. The 'limit' parameter is already documented in the schema with a range and default, so the description adds little beyond that.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb '解析' (parse) and names the exact resource (RSS/Atom feed), plus the returned fields. This clearly distinguishes it from generic web-fetching siblings like fetch_web and fetch_urls.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies it is for RSS/Atom feeds only, and the sibling names suggest alternatives, but there is no explicit statement of when to use fetch_rss versus fetch_web, fetch_web_md, or fetch_urls. The agent must infer the usage boundary from the resource type.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

fetch_urlsFetch UrlsA

批量抓取多个网页,返回每个的标题与正文摘要(单点失败不影响整体)。

参数: urls: URL 列表(最多 5 个) mode: "text" 或 "markdown" max_chars: 每个条目的最大字符数

返回: 逐条列出每个 URL 的 标题 + 正文(失败的条目标注原因)。

ParametersJSON Schema
NameRequiredDescriptionDefault
modeNo输出格式:text=纯文本正文,markdown=Markdown正文text
urlsYes
max_charsNo每个条目的最大字符数,500-20000,默认 3000

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden and does disclose non-obvious behavior: partial-failure isolation ('单点失败不影响整体'), per-item failure reasons, and a 5-URL cap. It doesn't mention rate limits or content-type constraints, but the key operational traits are visible.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured: a one-line intent, a compact parameter list, and a clear return format. It front-loads the most critical behavioral trait (failure isolation) and avoids unnecessary filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a moderately simple tool with an output schema present, the description gives enough to invoke it correctly: input shape, size limit, output format, and failure behavior. The main gap is explicit differentiation from sibling tools, but that is not fatal to correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema covers mode and max_chars well, giving about 67% coverage. The description adds the important missing constraint for urls: a maximum of 5 URLs, which is not in the schema. It also clarifies the per-item character limit context.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('批量抓取多个网页') and the result (title + body summary per page). The batch/multiple-URL scope distinguishes it from single-page siblings like fetch_web, and the return contract is explicit.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies it should be used when fetching multiple URLs at once, but it never explicitly says when to choose it over fetch_web, fetch_web_md, search_web, or fetch_rss. No exclusions or alternative routing are provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

fetch_webFetch WebA

抓取一个网页并提取正文纯文本(自动去除导航/脚本/样式等噪音)。

参数: url: 网页地址,如 https://www.plbear.com/ max_chars: 返回正文的最大字符数

返回: 页面标题 + 正文纯文本(适合喂给 LLM 阅读)。

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYes
max_charsNo返回正文最大字符数,500-200000,默认 8000

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the burden of behavioral disclosure. It does well by revealing automatic noise removal, returning title + plain text, and the max_chars truncation behavior. It does not cover failure modes or rate limits, but for a simple fetch tool the core behavior is transparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is tightly structured with an action line, parameter list, and return section. Every sentence earns its place, and the most important behavioral detail (noise removal) is front-loaded. No filler or redundant explanation.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple 2-parameter fetch tool with no annotations, the description covers input semantics, output shape, and preprocessing behavior. It could be slightly more complete by referencing alternatives or error behavior, but an agent has enough to invoke it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 50%: max_chars has a full description with range and default, but url is undocumented in the schema. The description compensates by defining url as a webpage address and providing an example, while restating max_chars meaning. This adds meaningful value beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states the action: fetch a single webpage and extract clean body plain text, removing navigation/script/style noise. This distinguishes it from siblings like fetch_web_md (markdown output), fetch_urls (multiple URLs), search_web (search), and fetch_rss (RSS feed).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage: when you need a webpage's readable body text for LLM consumption. However, it never explicitly compares against alternatives or states when not to use this tool, even though sibling tools are listed and the distinction would be valuable.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

fetch_web_mdFetch Web MdA

抓取一个网页并转换为 Markdown(保留标题层级/列表/代码块/链接/图片/表格)。

参数: url: 网页地址,如 https://www.plbear.com/ max_chars: 返回 Markdown 的最大字符数

返回: 页面标题 + Markdown 正文(比纯文本更适合喂给 LLM / 文档化场景)。

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYes
max_charsNo返回 Markdown 最大字符数,500-200000,默认 15000

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the burden of behavioral disclosure. It does disclose the return shape (page title + Markdown body), the preservation of structure, and the max_chars truncation. It does not mention error behavior, non-HTML responses, or other edge cases, but for a read-only fetch tool this is a reasonable but not thorough disclosure.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the core action, uses a compact parameter/return structure, and contains no filler. Every sentence contributes to understanding what the tool does and what it returns.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple two-parameter fetch-and-convert tool, the description covers input, output, truncation, and recommended use case. The output schema further reduces the need to explain return values. It is slightly incomplete regarding explicit sibling routing and failure behavior, but overall sufficient.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema documents max_chars well, but url has no schema-level description. The tool description adds a concrete URL example for url and restates the meaning of max_chars, so it partially compensates for the 50% schema coverage. It does not add much depth beyond the example.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action: '抓取一个网页并转换为 Markdown' and specifies what Markdown elements are preserved. It doesn't explicitly distinguish from the sibling fetch_web, but the Markdown-vs-plain-text framing makes the differentiation largely inferable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives a clear intended use case: '比纯文本更适合喂给 LLM / 文档化场景'. However, it does not explicitly say when to prefer this over siblings like fetch_web or fetch_urls, nor does it state when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_webSearch WebA

搜索网页,返回 标题/链接/摘要 列表(免 API Key,基于 DuckDuckGo)。

参数: query: 搜索关键词 max_results: 最多返回的结果条数

返回: 纯文本结果列表,每条包含 标题、链接、摘要。

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYes
max_resultsNo最多返回结果数,1-20,默认 8

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the burden of behavioral disclosure. It explicitly discloses the backend (DuckDuckGo), lack of API key requirement, and the plain-text result format. This gives the agent a good understanding of what the tool does, though it does not mention potential rate limits or failure modes.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and well-structured, with the core purpose stated first, followed by a clear parameter list and return format. No filler or redundant prose. Every sentence provides useful information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a relatively simple search tool, the description covers the essential aspects: what it searches, how results are returned, and parameter meanings. The output schema covers the return structure, so the text description of return values is a helpful addition. It could mention behavior on no results or network errors, but these are minor gaps for a search tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description provides meaning for the 'query' parameter, which is entirely undocumented in the schema, by calling it the search keyword. For 'max_results', it restates the schema's purpose but adds no new information. Since schema coverage is only 50%, the description compensates for the gap on the required parameter.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: search the web and return a list of titles, links, and summaries. This directly distinguishes it from sibling fetch_* tools, which are focused on retrieving specific URLs or RSS feeds. The mention of DuckDuckGo and no API key adds specificity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The intended use is implied by the tool's name and description: use it when you need to search the web rather than fetch known URLs or feeds. However, the description does not explicitly state when to prefer this tool over siblings like fetch_web or fetch_rss, nor does it mention any exclusions or alternatives.

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. Dates show when Glama detected each change.

  1. 5 tool updatesv0.1.0
    • First observedfetch_rss
    • First observedfetch_urls
    • First observedfetch_web
    • First observedfetch_web_md
    • First observedsearch_web

TDQS

A3.9/5.0
Disambiguation3/5

search_web and fetch_rss are clearly distinct from the others, but fetch_web_md, fetch_web, and fetch_urls overlap significantly: two are single-page fetchers differing only in output format, and fetch_urls can also return markdown or text. An agent could confuse which tool to use when fetching a single URL, especially since fetch_urls handles the same formats as the other two.

Naming Consistency4/5

The naming pattern is mostly consistent: fetch_web, fetch_urls, fetch_rss all use fetch_ + target, and search_web follows verb_object. The only minor deviation is fetch_web_md, which adds a format suffix rather than a distinct resource type, but it remains readable and predictable.

Tool Count5/5

Five tools is well-scoped for a web retrieval and search server. Each tool covers a distinct mode—search, single web fetch (text or markdown), batch fetch, and RSS parsing—without unnecessary bloat or a feeling of incompleteness.

Completeness4/5

The server covers the core web retrieval domain well: searching, fetching single pages in two formats, batch fetching, and RSS parsing. Minor gaps exist, such as no direct HTML fetch or ability to search within fetched documents, but agents can work around these using the provided tools.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    C
    maintenance
    Enables AI agents to perform web searches, extract webpage content, and conduct end-to-end search-and-extract operations using multiple search providers and content extraction methods.
    -
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables AI agents to fetch and extract clean, readable content from web pages, and search within pages for specific queries, without needing a full browser.
    1
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    Enables AI agents to perform web searches, fetch and extract page content, and crawl sites with caching, rate limiting, and robots.txt compliance, all without needing API keys.
    11
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Enables AI agents to extract structured content from URLs, search the web via DuckDuckGo, monitor site availability, and convert HTML to markdown without requiring API keys.
    5
    52
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/IYABAO/fluxio-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server