- Home
- MCP servers
- Infinite
Infinite
- python
0
GitHub Stars
python
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"kristopolous-infinite-mcp": {
"command": "python",
"args": [
"-m",
"infinitemcp"
],
"env": {
"INFINITEMCP_DB": "YOUR_DATABASE_PATH"
}
}
}
}Infinite MCP acts as a universal gateway to the MCP ecosystem, letting you search, discover, and run functions across thousands of MCP servers through natural language queries. It streamlines integration by loading servers on demand and securely handling credentials, enabling you to access diverse data sources and tools from a single interface.
How to use
You interact with Infinite MCP by running it as a local stdio server and connecting to it through your MCP client workflow. Start the MCP server, then use its three core capabilities to locate, inspect, and execute tools on remote MCP servers.
How to install
Prerequisites you need before starting Infinite MCP:
Setup steps to install locally and prepare the MCP index:
Install and run commands
# Clone the repository
git clone https://github.com/yourusername/infinitemcp.git
cd infinitemcp
# Install Python dependencies
pip install -r requirements.txt
# Build the MCP server index (one-time setup)
./extracto
Available tools
search_mcp
Semantic search across all known MCP servers to find candidates based on natural language queries.
get_functions
Discover what a specific MCP server can do by listing its available functions.
run_function
Execute a selected function on a chosen MCP server using provided arguments and credentials.