nimbus-mcp
OfficialClick on "Install 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., "@nimbus-mcpsearch my Nimbus index for notes about the MCP protocol"
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.
@nimbus-dev/mcp
What this is
A tiny launcher that exposes your local Nimbus index and agents to
any MCP (Model Context Protocol) client — editors, chat clients,
or other MCP-speaking tools. It does no work itself: it locates the Nimbus CLI binary already
installed on your machine and execs it as nimbus mcp-server --stdio, then gets out of the way and
lets stdio pass straight through.
This package is MIT-licensed and does not depend on (or import from) the AGPL-3.0 packages/cli or
packages/gateway Nimbus source — it only knows how to find the installed binary, never how to
run the gateway itself.
Requires the Nimbus gateway to already be installed. This launcher does not install or bundle
Nimbus; run the regular Nimbus installer first, and keep the gateway configured the way you
normally use it (the mcp-server --stdio command talks to your existing local index).
Related MCP server: mcp-cli-catalog
Install
Not published to npm yet.
@nimbus-dev/mcphas no release-please entry and no publish workflow — registry submission is deliberately deferred to a release activity. Thenpm/npxinstructions below are what you will use once it is published; until then, use Running from a local checkout.
Run it directly, without a global install, from your MCP client's config (see below), or install it explicitly:
npm install -g @nimbus-dev/mcpQuickstart
Add nimbus-mcp as a command in your MCP client's server configuration, for example:
{
"mcpServers": {
"nimbus": {
"command": "npx",
"args": ["-y", "@nimbus-dev/mcp"]
}
}
}Running from a local checkout
Until the package is published, point your MCP client straight at the launcher's entry point in a clone of the Nimbus repository. Use absolute paths — an editor-spawned MCP server does not inherit your shell's working directory:
{
"mcpServers": {
"nimbus": {
"command": "bun",
"args": ["/absolute/path/to/nimbus-mcp/src/index.ts"]
}
}
}If you already have the Nimbus CLI installed, you can skip the launcher altogether and have your
client run nimbus mcp-server --stdio directly — the launcher exists only to find that binary for
you.
How the binary is found
The launcher looks for the Nimbus binary in this order:
NIMBUS_BIN— an explicit full path to the binary, if set. ANIMBUS_BINthat points at a non-existent file is reported as an error, never silently ignored.PATH— the firstnimbus(ornimbus.exeon Windows) found on yourPATH.Known per-platform install directories, the installer's own output directory first:
%LOCALAPPDATA%\Programs\Nimbus\binon Windows,~/.local/binon macOS and Linux, then/opt/homebrew/binand/usr/local/bin(macOS) or/usr/local/binand/usr/bin(Linux).
Step 3 is what carries a GUI-launched editor on macOS, which typically spawns MCP servers without
your shell's PATH. If none of those resolve, the launcher exits with a message naming the fix —
never a bare exit code.
Environment variables
NIMBUS_BIN— override the resolved binary path. Point it at the exact Nimbus CLI executable.NIMBUS_MCP_TIMEOUT_MS— how long the Nimbus CLI's MCP adapter waits for an agent brief before returning a clean timeout error; it defaults to 60 s. Lower it when your editor's own MCP transport timeout is shorter, so the tool reports a timeout instead of having the call severed underneath it. This is the adapter's own budget — the gateway imposes no such timeout. It is read by the underlyingnimbus mcp-serverprocess, which this launcher execs with your environment inherited unchanged.
See also
docs/architecture.md— Nimbus subsystem design and the MCP connector standard.The gateway's
mcp-servercommand, in the main Nimbus repository (packages/gateway,packages/cli) — this package launches it, but does not contain or license it.
License
MIT — see LICENSE. Note that the Nimbus gateway and CLI this launcher execs are
licensed separately under AGPL-3.0.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceAn MCP server to list and launch applications on MacOS1319MIT
- AlicenseNot gradedqualityDmaintenanceAn MCP server that publishes CLI tools on your machine for discoverability by LLMs141MIT
- AlicenseNot gradedqualityDmaintenanceExposes the local Gemini CLI as an MCP stdio server, providing tools for prompting, web search, file operations, and MCP management, enabling AI clients like Codex CLI and Claude Code to interact with Gemini.7MIT
Related MCP Connectors
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/nimbus-agent/nimbus-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server