Keyword, vector, hybrid, and SQL retrieval over data on object storage, for AI agents.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
An MCP server for Infino β it lets an AI agent run keyword, semantic, hybrid, and SQL retrieval over your data on object storage β the retrieval layer for RAG, persistent agent memory, and search over your own files β from any MCP-compatible client (Claude Code, Claude Desktop, Cursor, VS Code, and others). Published on npm as @infino-ai/mcp-server and listed on the official MCP Registry as io.github.infino-ai/mcp-server (which propagates to catalogs like Smithery, Glama, and PulseMCP).
The server is launched by your MCP client over stdio β you don't run it directly in normal use. Every client config follows the same shape: command npx -y @infino-ai/mcp-server, with configuration supplied via environment variables. Set INFINO_MCP_URI to the data you want to serve β a local path or a bucket URI. If it's omitted, the server uses a durable per-user directory (~/.infino/mcp) so data persists across restarts; point INFINO_MCP_URI at your own path or bucket to serve existing data.
To serve a hosted Infino Cloud database instead, point INFINO_MCP_URI at
the https://<host>/<database> endpoint and supply your API key. Everything
else is identical:
The sections below show the exact place each client expects this block.
For Claude Code, this repo is also a plugin marketplace. Installing the plugin wires up the MCP server plus a how-to-use skill and an /infino-search command in one step β no JSON to edit. Inside Claude Code:
On enable you'll be prompted for your Infino data URI (INFINO_MCP_URI) and, for Infino Cloud, your API key. That's it: the infino_* tools, the using-infino skill, and /infino-search <query> are then available. (Other clients: use the Client setup configs below.)
Add the server with the CLI. Use --scope user to make it available in every project, or --scope project to commit it to the repo (writes a shared .mcp.json); the default scope is local (this project only).
Add more knobs with repeated -e flags, e.g. -e INFINO_MCP_VALIDATE=true. Verify with:
Edit the configuration file (create it if it doesn't exist), then fully restart Claude Desktop.
| OS | Path |
|---|---|
| macOS | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Windows | %APPDATA%\Claude\claude_desktop_config.json |
| Linux | ~/.config/Claude/claude_desktop_config.json |
Add the server to ~/.cursor/mcp.json (available in all projects) or <project>/.cursor/mcp.json (this project only), then reload. The format matches Claude Desktop:
VS Code (1.102+) reads MCP servers from .vscode/mcp.json in the workspace (or your user mcp.json via the command palette β MCP: Open User Configuration). Note the top-level key is servers and each entry declares "type": "stdio":
Any client that speaks MCP over stdio works. Configure it to launch:
Logs are written to stderr so they never corrupt the JSON-RPC stream on stdout β point your client's log capture there when debugging.
All configuration is via environment variables β there are no config files and no command-line flags to manage.
| Variable | Required | Default | Description |
|---|---|---|---|
INFINO_MCP_URI | No | ~/.infino/mcp (persistent) | Data to serve: a local path (/Users/me/.infino/memory), a bucket URI (s3://β¦, az://β¦), or a hosted endpoint (https://<host>/<database>, Infino Cloud). If unset, a durable per-user directory (~/.infino/mcp) is used so data persists across restarts; it falls back to an ephemeral in-process catalog (memory://) only if that directory can't be created. |
INFINO_API_KEY | With a hosted URI | β | API key (inf_β¦) for a hosted https:// endpoint. Required when INFINO_MCP_URI is an https:// URI; ignored for local and object-storage connections. |
INFINO_MCP_EMBED_PROVIDER | No | local | Embedding provider: local (Hugging Face transformers.js, no key, nothing leaves the machine) or openai (any OpenAI-compatible /embeddings endpoint β OpenAI, Azure OpenAI's /openai/v1 surface, or a compatible server). Inferred as openai when INFINO_MCP_EMBED_BASE_URL is set. |
INFINO_MCP_EMBED_BASE_URL | With openai | β | Base URL of the OpenAI-compatible embeddings API, e.g. https://api.openai.com/v1 or https://<resource>.openai.azure.com/openai/v1. The server POSTs to <base>/embeddings. |
INFINO_MCP_EMBED_API_KEY | No | β | API key for the openai provider. Sent as both Authorization: Bearer and api-key, so one value works for OpenAI and Azure OpenAI. Omit to call an unauthenticated or ambient-identity endpoint. |
INFINO_MCP_EMBED_MODEL | No | Xenova/all-MiniLM-L6-v2 (local) Β· text-embedding-3-small (openai) | The embedding model. For local, a Hugging Face feature-extraction model; for openai, the model/deployment name. Must match the model that produced the table's stored vectors β and therefore its vector-index dimension (e.g. text-embedding-3-small is 1536-dim; the default local model is 384-dim). |
INFINO_MCP_VALIDATE | No | off | When set (1/true/yes), probes the object store at startup so bad credentials or an unreachable bucket fail then instead of on the first search. |
Cloud credentials are read from the standard provider environment variables β the server maps them to the store's config and introduces no credential vars of its own. Omit them entirely to use ambient cloud identity (an IAM instance role or Azure managed identity).
Serving a catalog embedded with OpenAI / Azure OpenAI. If your tables were vectorized with a hosted embedding model rather than the local default, point the server at that same model so query and document vectors align:
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/mcp-server-125)<a href="https://allmcps.com/mcp/mcp-server-125"><img src="https://allmcps.com/api/badge/mcp-server-125?style=directory" alt="Infino MCP on AllMCPs" /></a>