nimbus
Nimbus MCP Server provides read-only access to a private, local index of data from 80+ connected cloud services (GitHub, Slack, Jira, Drive, etc.), keeping your credentials and data on your machine. It exposes six tools for AI-powered querying of dev activity:
searchIndex– Keyword/semantic search across all services, with optional filters for service or item type.getConnectorStatus– Health and sync status of configured connectors.getRecentIncidents– Recent incidents, optionally filtered by service.getRecentPullRequests– Recent PRs, optionally filtered by service (state metadata provided for client-side filtering).getRecentDeployments– Recent deployments, optionally filtered by service.getDoraMetrics– DORA metrics (deployment frequency, lead time, change failure rate, MTTR) for a given service over a period like'30d'.
Integrates with dbt for data transformation, lineage, and understanding of data pipeline changes.
Integrates with GitHub for source code management, pull requests, commits, and code search for incident response and development workflows.
Integrates with GitLab for source code management, CI/CD, and project collaboration.
Integrates with Gmail to read, search, and manage emails for incident context and communication.
Integrates with Google services such as Gmail, Google Drive, and other Google Workspace tools for email, file access, and more.
Integrates with Google Drive to access and search files for document lineage and collaboration.
Integrates with Jira for issue tracking, project management, and linking incidents to tickets.
Integrates with Looker for business intelligence, data exploration, and data lineage tracing.
Integrates with Notion for accessing notes, documentation, and knowledge bases.
Integrates with PagerDuty for incident management, alerting, and correlation with code and deployments.
Integrates with Slack for messaging, notifications, and channel-based collaboration.
Nimbus
Cross-service incident context in under 100 ms. Consent-gated automation. Your credentials never leave the machine.
A local-first, HITL-gated AI agent over your dev tools — it builds a private index of your work across 90+ services and answers questions and runs multi-step workflows entirely on your machine.
Install · Docs · Watch the 15-second cast · Architecture
Nimbus is aheadless Gateway + CLI (plus a VS Code extension and a browser web clipper). It runs on your machine and talks to ~90 cloud services through first-party MCP connectors. Nothing about your data — the index, your credentials, the audit log — leaves your box.
What it does
Three things, in one query:
Incident response — PagerDuty alert → deploy → commit → author, correlated locally.
CVE / code exposure — indexed code search across every connected repo, with no fan-out network calls.
Data lineage — Tableau → Looker → dbt → Airflow → the renamed column.
Related MCP server: test-server
Three load-bearing words
local — the SQLite index, the Vault, and the audit log all live on your machine. The cloud is a connector, not the source of truth. Telemetry is opt-in and off by default (
[telemetry] enabled = false).consent-gated — every destructive or outbound action is intercepted by a human-in-the-loop gate before it runs. It lives in the executor, not the prompt, so it can't be jailbroken away.
MCP — Nimbus speaks the Model Context Protocol in both directions. As an MCP client it drives every connector as an MCP server (tools), and hosts any third-party server you register with
nimbus connector add --mcp. As an MCP server,nimbus mcp-server --stdioexposes your local index to editor AIs through six read-only tools. The engine never calls a cloud API directly.
Quickstart
1. Install. No admin on macOS and Windows; the Linux .deb uses sudo.
# The keychain must be UNLOCKED. Nimbus never shows an authorization dialog (a
# background service could not answer one), so on a locked keychain it fails
# immediately and tells you what to run. Over SSH or in CI, give it its own
# keychain: security create-keychain -p "" nimbus.keychain
# security default-keychain -s nimbus.keychain
# security unlock-keychain -p "" nimbus.keychain
curl -fsSL https://github.com/nimbus-agent/Nimbus/releases/latest/download/install.sh | sh -s -- --yes
# then open a new shell:
nimbus --versionThe installer picks Apple silicon or Intel from uname -m, verifies the release
signature before it installs anything, and copies the binaries to ~/.local/bin.
Rather read the script before running it? Download the archive and run the copy inside it — same installer, no pipe:
# Apple silicon — for Intel, swap arm64 → x64.
curl -fsSL https://github.com/nimbus-agent/Nimbus/releases/latest/download/nimbus-headless-macos-arm64.tar.gz -o /tmp/nimbus.tar.gz
mkdir -p /tmp/nimbus && tar -xzf /tmp/nimbus.tar.gz -C /tmp/nimbus
less /tmp/nimbus/install.sh
/tmp/nimbus/install.sh# Credentials live in the OS keystore, and the Gateway will not start without it:
sudo apt install libsecret-tools # Debian/Ubuntu
# sudo dnf install libsecret # Fedora/RHEL
curl -fsSL https://github.com/nimbus-agent/Nimbus/releases/latest/download/nimbus_amd64.deb -o /tmp/nimbus.deb
# apt, not `dpkg -i` — the package depends on bubblewrap and libcap2-bin,
# and dpkg will not install those for you.
sudo apt install /tmp/nimbus.deb
nimbus --versionPrefer no sudo? Two options, neither of which resolves the dependencies for
you — the .deb above is the only path that does:
# x86-64 only; there is no published Linux arm64 build.
curl -fsSL https://github.com/nimbus-agent/Nimbus/releases/latest/download/install.sh | sh -s -- --yes
# then open a new shell:
nimbus --versionThis installs to ~/.local/bin and updates your shell PATH. It warns if
bubblewrap is missing rather than installing it — and the Gateway will not
start without it (sudo apt install bubblewrap). The
AppImage
is the other no-sudo route: a portable single file.
Headless box — server, container, SSH session or WSL? libsecret also needs
a D-Bus session and an unlocked keyring, which those machines usually lack. Run
nimbus doctor; it names which piece is missing. Full recipe:
Headless Linux.
$url = "https://github.com/nimbus-agent/Nimbus/releases/latest/download/install.ps1"
& ([scriptblock]::Create((irm $url))) -Yes
# then open a new PowerShell window:
nimbus --versionWorks on stock Windows PowerShell 5.1 as well as PowerShell 7. It is spelled
& ([scriptblock]::Create(...)) rather than irm ... | iex because iex
cannot pass -Yes to the script.
Rather read the script before running it? Download the archive and run the copy inside it — same installer, no pipe:
$url = "https://github.com/nimbus-agent/Nimbus/releases/latest/download/nimbus-headless-windows-x64.zip"
Invoke-WebRequest -Uri $url -OutFile "$env:TEMP\nimbus.zip"
Expand-Archive -Path "$env:TEMP\nimbus.zip" -DestinationPath "$env:TEMP\nimbus" -Force
notepad "$env:TEMP\nimbus\install.ps1"
& "$env:TEMP\nimbus\install.ps1"Every release artefact is covered by a GPG-signed SHA-256 manifest (SHA256SUMS.asc, key 5A20457CCD8B53FFAA945240886ADA6B487CAB6E) — that manifest is the cross-platform integrity proof. Linux artefacts and the AppImage additionally ship an individual .asc sidecar; the macOS and Windows archives do not, so verify those against the manifest. The gateway and CLI binaries also carry GitHub build-provenance attestations. When it downloads a release, the installer runs the manifest check for you: it verifies SHA256SUMS.asc against a fingerprint pinned inside the script itself, refuses to install on a mismatched, expired or revoked key, then checks the downloaded archive against the manifest. If gpg is missing, or the signature file cannot be fetched, it installs on the checksum alone and says so — SIGNATURE NOT CHECKED — rather than letting a checksum pass read as a signature pass. To verify by hand instead, see Verify your download. Homebrew and Scoop taps are also available (see the install guide).
2. Index a repo you already have — no account, no token, no API key:
cd ~/code/your-project
nimbus initnimbus init adds the repo to nimbus.toml with code indexing on, starts the gateway, and indexes it. It appends to your config — it never rewrites it, so your comments and existing settings survive (and it keeps a nimbus.toml.bak).
3. Trace a line's provenance — who wrote it, the PR, the ticket, the incident it responded to, and what breaks downstream:
nimbus why src/auth.ts:42nimbus init prints a real file:line from your own repo to try first. This works with no credentials and no LLM configured.
Optional: add an LLM
Indexing, nimbus why, and the agent briefs all work with no LLM configured — briefs render deterministically. An LLM buys you two things: nimbus ask (natural-language queries), and prose synthesis that rewrites those briefs into more readable narrative.
It does not have to be a cloud one. Point Nimbus at a local model and nothing — not even prompts — leaves the machine:
# ~/.config/nimbus/nimbus.toml
[llm]
prefer_local = true
local_model = "llama3.1" # served by Ollama on http://127.0.0.1:11434See Local & air-gapped LLM setup.
Optional: connect a cloud service
To correlate across GitHub, Jira, PagerDuty, Slack and ~90 others, add a connector. The fastest path is a token-based one like GitHub:
nimbus connector auth github --token <your_PAT>
nimbus connector sync github
nimbus ask "what PRs did I open in the last 7 days?"(OAuth services — Google Drive, Gmail, Slack, … — use nimbus connector auth <service>, which opens your browser. See Connect a service.)
How it works
~90 cloud services ─▶ first-party MCP connectors ─▶ local SQLite index (+ embeddings)
│
your question ─▶ engine ─▶ HITL consent gate ─▶ action
│
CLI · VS Code · web clipper · (desktop, coming)A headless Bun Gateway maintains the private index and runs the agent; clients talk to it only over local JSON-RPC IPC. Credentials live in the OS keystore (DPAPI / Keychain / libsecret) — never in logs, config, or IPC. Full design: Architecture.
Connectors
90+ first-party MCP connectors across Google, Microsoft, GitHub/GitLab, Slack, Jira, Notion, plus observability, CI/CD, security/quality, feature-flags, GitOps, data/BI, deploy, finance, and support tools. Browse the full roster in the connector docs; building your own is covered in CONTRIBUTING.
Security & trust
Human-in-the-loop consent on every outbound/destructive action (structural, not a prompt).
No plaintext credentials — OS Vault only.
Signed, reproducible releases — GPG manifests, SBOM (CycloneDX), build-provenance attestations.
Audited — see the security model & disclosure policy.
Found a vulnerability? See SECURITY.md.
Community & contributing
💬 GitHub Discussions — questions, ideas, show-and-tell.
🧩 awesome-nimbus — connectors, recipes, extensions.
🛠️ CONTRIBUTING.md — good-first-issues, workflow, and the contributor walkthrough. PRs welcome.
License
Dual-licensed by design: AGPL-3.0 for the gateway, CLI, and MCP connectors; MIT for the separately-published @nimbus-dev/sdk and @nimbus-dev/client npm packages so extensions and integrations stay unencumbered.
Maintenance
Related MCP Servers
- MIT
- AlicenseNot gradedqualityDmaintenanceKarpenter is a Kubernetes Node Autoscaler built for flexibility, performance, and simplicity.Apache 2.0
- AlicenseAqualityAmaintenanceDigital identity layer for AI — your bio, career, skills, interests, and projects always available to every AI tool. Auto-generates profile from 342+ public APIs, 13 real-time plugins, YAML-based profiles with privacy-first local storage.27718MIT
Related MCP Connectors
Persistent project context for xAI Grok. IANA-registered .faf format.
LLM chat, text summarization and AI image generation
Persistent project context for Claude. IANA-registered .faf format.
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'
If you have feedback or need assistance with the MCP directory API, please join our Discord server