Token导航 LogoToken导航TokenDH.com
Infinite MCP logo
搜索检索stdio官方级别未说明来源级核验

Infinite MCP

MCP Server

InfiniteMCP是一个元MCP服务器,通过语义搜索和动态工具发现,为Claude提供对整个MCP服务器生态系统的访问。

工具数

3

提示词数

0

GitHub Stars

4

资源数

0
搜索PythonClaude自然语言查询Claude

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

day50-dev

提供方

day50-dev

最后核验

2026/5/17 20:22

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

命令预览

pip install -r requirements.txt

详细介绍

InfiniteMCP

一个元MCP服务器,通过语义搜索和动态工具发现,Claude可以访问MCP服务器的整个生态系统。

![MCP Compatible](https://modelcontextprotocol.io/) ![License: MIT](https://opensource.org/licenses/MIT)

什么是InfiniteMCP?

InfiniteMCP是一个MCP服务器,充当数千个其他MCP服务器的通用网关。InfiniteMCP允许Claude通过自然语言查询按需发现、理解和使用任何MCP服务器,而不是手动配置您要使用的每个MCP服务器。

将其视为“MCP服务器中的MCP服务器”——一个解锁整个MCP生态系统的单一连接。

运作原理

Claude asks: "Search for MCP servers that can crawl websites"
    ↓
InfiniteMCP searches 1000+ indexed MCP servers
    ↓
Returns: [firecrawl-mcp, web-scraper-mcp, playwright-mcp, ...]
    ↓
Claude: "Use firecrawl to get content from example.com"
    ↓
InfiniteMCP dynamically loads firecrawl-mcp and executes the request
    ↓
Returns the crawled content to Claude

三大核心功能

InfiniteMCP向Claude展示了三个强大的工具:

  1. search_mcp -在所有已知的MCP服务器上进行语义搜索
   Input: "web search"
   Output: [brave-search-mcp, tavily-mcp, serper-mcp, ...]
  1. get_functions -了解MCP服务器可以做什么
   Input: mcp_id (e.g., "brave-search-mcp")
   Output: [brave_web_search, brave_local_search, ...]
  1. run_function -从任何MCP服务器执行功能
   Input: mcp_id, function_name, arguments, credentials
   Output: Function result

特性

  • 🔍 语义搜索 -使用最先进的嵌入式模型,使用自然语言查找MCP服务器
  • 🚀 动态加载 -MCP服务器按需加载,无需预先配置
  • 🔐 智能凭证管理 -安全地处理API密钥和凭据,用户提示缺少值
  • 🧩 工具发现 -自动发现任何MCP服务器上的所有可用功能
  • 📚 综合指数 -与生态系统中的1000多台MCP服务器进行预索引
  • 高效 -缓存连接和元数据以实现快速重复访问

安装

先决条件

  • Python 3.11+
  • 支持CUDA的GPU(建议用于嵌入搜索)
  • Node.js 18+(用于运行发现的MCP服务器)

设置

本地安装将尝试cuda并回退到cpu

# Clone the repository
git clone https://github.com/yourusername/infinitemcp.git
cd infinitemcp

# Install dependencies
pip install -r requirements.txt

# Build the MCP server index (one-time setup)
./extracto

用法

使用克劳德桌面

添加到您的 claude_desktop_config.json:

{
  "mcpServers": {
    "infinitemcp": {
      "command": "python",
      "args": ["-m", "infinitemcp"],
      "env": {
        "INFINITEMCP_DB": "/path/to/infinitemcp/db"
      }
    }
  }
}

交互示例

发现服务器:

You: "I need to search the web for information about MCP servers"
Claude: [uses search_mcp("web search")]
Claude: "I found several options. Brave Search looks good. Let me use that..."

使用服务器:

Claude: [uses get_functions("brave-search-mcp")]
Claude: [uses run_function with brave_web_search]
Claude: "Here's what I found..."

处理凭据:

Claude: [attempts run_function("github-mcp", ...)]
InfiniteMCP: "Missing required credential: GITHUB_TOKEN"
Claude: "I need your GitHub token to access that API..."
You: "Here it is: ghp_..."
Claude: [retries with credentials]

建筑

目录标签

目录标签

搜索PythonClaude自然语言查询语义搜索本地部署动态工具发现MCP服务器API管理

支持客户端

Claude

接入字段

传输方式(transport,传输协议)

stdio

鉴权方式(authType,认证方式)

token

工具数量(toolCount,工具数)

3

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

stdiotoken部署方式未说明

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

来源信息

继续浏览同类 MCP