Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ”’ Security
  3. Phantom Secrets
P
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/11/2026, 12:28:57 AM

Phantom Secrets

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository

Stop AI coding agents from leaking API keys. Local proxy swaps real secrets for phm_ tokens.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "phantom-secrets": {
      "command": "npx",
      "args": [
        "-y",
        "phantom-secrets"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ”’ More in Security

Documentation Overview

Phantom β€” Stop AI agents from leaking your API keys

Phantom

Delegate everything to AI. Without sharing a single key.

Phantom hands every AI tool a worthless phm_ token. The local proxy injects the real key at the network layer. Full access. Zero exposure.

GitHub stars CI npm License: MIT

Quick start Β· Why Phantom? Β· MCP setup Β· Docs Β· phm.dev


β–Ά Watch the 45-second demo Β Β·Β  πŸ›‘ Security model Β Β·Β  πŸ“‹ Threat model Β Β·Β  πŸ’¬ Discussions

Why Phantom?

AI coding agents read your .env files. Once a real API key enters an LLM's context window, it leaks β€” via prompt injection, session logs, malicious MCP servers, or training data. GitGuardian reports AI-assisted commits leak secrets at 2Γ— the baseline rate.

Every other secrets manager protects keys at rest and in transit. Phantom protects them in context:

  • πŸ”’ Real keys never enter the LLM β€” .env contains only phm_ tokens; the proxy swaps them at the network edge.
  • ⚑ 10-second setup β€” npx phantom-secrets init and you're protected. No accounts, no DNS, no MITM cert dance.
  • 🧰 Works with every AI tool β€” Claude Code, Cursor, Windsurf, Codex, GitHub Copilot. Anything that reads .env.
  • πŸ¦€ Open source, local-first, MIT β€” your secrets live in your OS keychain. The optional cloud sync is end-to-end encrypted; the server only ever sees ciphertext.

Used by developers who don't want to choose between delegating to AI and not pasting their Stripe key into a chat window.

Quick Start

bash
$ npx phantom-secrets init
# Auto-detects .env, .env.local, or .env in subdirectories
# Stores real secrets in OS keychain, rewrites .env with phantom tokens
# Auto-configures Claude Code MCP server if detected

$ phantom agent doctor
# One human-readable readiness check for AI-agent safety

$ phantom exec -- claude
# Authenticated proxy running on 127.0.0.1:54321
# AI sees phantom tokens; proxy injects real keys

Windows

The same commands work on Windows. npx phantom-secrets init installs via npm as on macOS/Linux.

After phantom start --daemon, the CLI detects your shell and prints the matching env-var syntax. For reference:

PowerShell:

powershell
$env:OPENAI_BASE_URL = "http://127.0.0.1:PORT/openai/_phantom/TOKEN/"
$env:PHANTOM_PROXY_PORT = "PORT"
$env:PHANTOM_PROXY_TOKEN = "TOKEN"

cmd.exe:

cmd
set OPENAI_BASE_URL=http://127.0.0.1:PORT/openai/_phantom/TOKEN/
set PHANTOM_PROXY_PORT=PORT
set PHANTOM_PROXY_TOKEN=TOKEN

Git Bash / WSL: use the export X=Y syntax from the main quick-start.

Notes:

  • PHANTOM_PROXY_TOKEN is the proxy session authenticator. By default, phantom exec and phantom start include it in local *_BASE_URL values as /_phantom/TOKEN/ so unmodified SDKs work. Header-aware clients can set PHANTOM_PROXY_HEADER_AUTH_ONLY=1 and send x-phantom-proxy-token: $PHANTOM_PROXY_TOKEN instead.
  • If phantom.exe fails to run with "Application Control policy has blocked this file," Windows Smart App Control is honoring the downloaded file's Mark-of-the-Web tag. One-time fix from PowerShell: Get-ChildItem "$env:USERPROFILE\.phantom-secrets\bin\*.exe" | Unblock-File.
  • The pre-commit hook installed by phantom init is a #!/bin/sh script. Native git from the command line invokes it via Git for Windows' bundled sh.exe, which is what the official Git for Windows installer ships. GUI clients (GitHub Desktop, some IDE integrations) may run with a stripped-down PATH that lacks sh.exe and silently skip the hook β€” for these, run commits from a terminal, or use phantom check --staged directly. CI is the durable safety net regardless.
  • Windows-on-ARM64 not yet packaged β€” x64 only. Tracker: #1.

How It Works

Code
  .env file (safe to leak)          OS Keychain / Vault
  +--------------------------+      +---------------------+
  | OPENAI_API_KEY=phm_a7f3  | ---> | sk-real-secret-key  |
  | STRIPE_KEY=phm_c9d1...   |      | sk_live_real-key... |
  +--------------------------+      +---------------------+
           |                                 |
           v                                 v
  AI Agent (Claude, Cursor)         Phantom Proxy (127.0.0.1)
  +--------------------------+      +------------------------------+
  | Reads .env               |      | Intercepts HTTP requests     |
  | Sees only phm_ tokens    | ---> | Replaces phm_ with real keys |
  | Makes API calls to proxy |      | Forwards over TLS to real API|
  +--------------------------+      +------------------------------+
  1. phantom init reads .env, stores real secrets in the OS keychain, rewrites .env with phm_ tokens
  2. phantom exec -- claude starts a local reverse proxy, sets SDK-compatible service base URLs such as OPENAI_BASE_URL=http://127.0.0.1:PORT/openai/_phantom/TOKEN/, exposes PHANTOM_PROXY_TOKEN to the child process, and launches the command
  3. API calls hit the proxy, which authenticates the local session, removes the local auth token before forwarding, replaces phantom tokens with real secrets, and forwards over TLS
  4. When the session ends, the proxy shuts down and the proxy session token is invalid. Phantom tokens remain worthless placeholders outside an authenticated proxy session.

MCP Integration (Claude Code, Cursor, Windsurf, Codex)

Phantom ships an MCP server so AI coding tools can manage secrets directly -- without ever seeing real values.

  • Vault β€” phantom_list_secrets, phantom_status, phantom_init, phantom_add_secret_interactive, phantom_add_secret (deprecated; refuses plaintext), phantom_remove_secret, phantom_rotate, phantom_copy_secret
  • Detection + diagnostics β€” phantom_doctor, phantom_why, phantom_check, phantom_env
  • Local-to-cloud β€” phantom_wrap, phantom_unwrap, phantom_sync, phantom_cloud_push, phantom_cloud_pull, phantom_cloud_status
  • Teams β€” phantom_team_list, phantom_team_create, phantom_team_members, phantom_team_invite, phantom_team_key_publish, phantom_team_vault_push, phantom_team_vault_pull

Mutating tools require an explicit confirm: true parameter so a prompt-injected agent can't silently mutate state. Real secret values are never accepted as MCP tool arguments; new secrets are entered out-of-band in a trusted terminal.

One command per AI client β€” Phantom writes the right config file in the right place:

bash
phantom setup --client claude     # .claude/settings.local.json (project)
phantom setup --client cursor     # ~/.cursor/mcp.json
phantom setup --client windsurf   # ~/.codeium/windsurf/mcp_config.json
phantom setup --client codex      # ~/.codex/config.toml
phantom setup --client claude --print   # snippet to stdout for any other client

If phantom-mcp isn't on PATH, Phantom falls back to npx -y phantom-secrets-mcp so the config still works on a fresh machine. Restart the AI tool after running phantom setup so it picks up the new config.

Phantom works with any tool that supports the Model Context Protocol.

Cloud Sync + Dashboard

Sync vaults across machines with end-to-end encryption. The server never sees plaintext.

bash
$ phantom login
# Opens GitHub OAuth (device code flow)

$ phantom cloud push
# Encrypted client-side, uploaded to phm.dev

$ phantom cloud pull   # on another machine
# Downloaded and decrypted locally

$ phantom open
# Opens https://phm.dev/dashboard β€” read-only view of your projects,
# vault sizes, last sync, plan tier, and team membership.

Cloud sync uses ChaCha20-Poly1305 with a client-side passphrase derived via Argon2id. The server stores only ciphertext.

Team vaults (Pro)

Multiple developers can share a single E2E-encrypted vault per project. Server only ever stores ciphertext + per-member ciphertext shares.

bash
$ phantom team create "engineering"
# Creates a team; you become the owner.

$ phantom team invite <team_id> <github-username>
# Invites by GitHub login.

$ phantom team key-publish <team_id>
# Registers your X25519 public key on the team.
# (Run once per team; the private key stays in the OS keychain.)

$ phantom team vault-push <team_id>
# Encrypts the current project's vault with a fresh symmetric key,
# wraps that key (X25519 + ChaCha20-Poly1305) for every member that
# has a registered public key, then uploads.

$ phantom team vault-pull <team_id>   # on a teammate's machine
# Pulls, decrypts the per-member share with their private key,
# decrypts the vault, writes secrets locally.

Team memberships and member lists are visible in the read-only dashboard at phm.dev/dashboard/team.

Command Reference

CommandDescription
phantom initImport .env secrets into vault, rewrite with phantom tokens. --all <DIR> protects every git repo with a .env under <DIR> in one go (with --dry-run to preview, --jobs N / -j N to control parallelism)
phantom exec -- <cmd>Start an authenticated proxy and run a command with secret injection
phantom start / stopManage proxy lifecycle (standalone/daemon mode)
phantom listShow secret names stored in vault (never values; --json for machine-readable output)
phantom add <KEY> [VAL]Add a secret. With no VAL, prompts silently on the terminal; or pipe via --stdin
phantom remove <KEY>Remove a secret from the vault
phantom reveal <KEY>Print a secret value (or --clipboard to copy)
phantom statusShow proxy state, vault info, and mapped services
phantom rotateRegenerate all phantom tokens (old ones become invalid)
phantom doctorCheck configuration and vault health (--fix to auto-repair). Reports install source, vault backend, audit-log status, Argon2 params, and MCP wiring per client
phantom agent reportEmit a read-only AI-agent readiness report (--json for automation). Reports unsafe, protected, verified, team-ready, or compliance-ready
phantom agent doctorHuman-readable agent readiness view backed by the same policy engine
phantom agent setupPreview or apply safe defaults for agent use (--dry-run first, --apply to write changes)
phantom checkScan for unprotected secrets (pre-commit hook, --staged, --runtime)
phantom syncPush secrets to Vercel / Railway (--dry-run --json previews safely; --only PATTERN filters by glob, repeatable)
phantom pullPull secrets from Vercel / Railway into vault
phantom setupWire Phantom into an AI client. --client claude (default), cursor, windsurf, or codex. Add --print to emit the config snippet to stdout
phantom envGenerate .env.example for team onboarding
phantom exportExport vault to encrypted backup file (--passphrase), or emit plaintext JSON to stdout (--json --allow-plaintext)
phantom importImport from encrypted backup (<FILE> --passphrase), or migrate from --from doppler|infisical|dotenvx|1password|env --file <path>. Add --force to overwrite existing secrets
phantom audit showPrint recent audit events (--last N, --op OP, --name NAME, --json). Requires PHANTOM_AUDIT=1
phantom audit tailFollow the audit log live (--op, --name filters)
phantom audit pathPrint the absolute path to the audit log file
phantom audit verifyVerify HMAC-SHA256 chain integrity; exits 1 if tampering detected
phantom loginAuthenticate with Phantom Cloud via GitHub OAuth
phantom logoutClear cloud credentials
phantom cloud pushPush encrypted vault to Phantom Cloud
phantom cloud pullPull and decrypt vault from Phantom Cloud
phantom wrapWrap package.json scripts with phantom exec automatically
phantom unwrapRestore original package.json scripts
phantom watchWatch .env files and auto-detect new unprotected secrets
phantom why <KEY>Explain why a key is or is not protected
phantom copy <KEY>Copy a secret to another project's vault
phantom team list/create/members/inviteTeam vault management
phantom team key-publish <id>Register your X25519 pubkey on a team (once per team)
phantom team vault-push <id>Push current project to shared team vault (E2E encrypted per-member)
phantom team vault-pull <id>Pull team vault into local vault
phantom open [page]Open phm.dev pages in browser (dashboard, billing, team, docs, github, …)
phantom upgradeSelf-replace this binary with the latest GitHub release (--check-only to inspect first)
phantom completion <shell>Print a shell-completion script (bash, zsh, fish, powershell, elvish)

Features

  • Encrypted vault -- OS keychain (macOS Keychain / Secure Enclave, Linux Secret Service, Windows Credential Manager) with encrypted file fallback for CI/Docker. Argon2id hardened to OWASP balanced (m=64 MiB, t=3, p=1)
  • Phantom tokens -- 256-bit CSPRNG phm_ placeholders in .env, rotatable on demand
  • Authenticated proxy sessions -- each proxy run generates a fresh PHANTOM_PROXY_TOKEN; CLI-generated SDK URLs include it for compatibility, and header-aware clients can opt into x-phantom-proxy-token with PHANTOM_PROXY_HEADER_AUTH_ONLY=1
  • Streaming token replacement -- For text/* and application/x-www-form-urlencoded request bodies, phantom tokens are replaced frame-by-frame without buffering the full payload; a 67-byte carry buffer handles tokens that straddle chunk boundaries. JSON bodies use a buffered path to preserve field-level F9 scoping.
  • Full SSE/streaming support -- Response streaming preserved end-to-end for OpenAI, Anthropic, and other streaming APIs
  • Smart detection -- Heuristic engine distinguishes secrets (*_KEY, *_TOKEN, sk-*, ghp_*) from config (NODE_ENV, PORT)
  • Platform sync -- Push/pull secrets to Vercel and Railway
  • Pre-commit hook -- Blocks commits containing unprotected secrets
  • MCP server -- 25 tools for Claude Code, Cursor, Windsurf, and Codex to manage secrets without seeing values
  • Cloud sync -- E2E encrypted zero-knowledge vault sync across machines
  • Export/import -- Encrypted backup and restore (--passphrase); plaintext JSON export to stdout (--json --allow-plaintext); import from Doppler, Infisical, dotenvx, 1Password, or plain .env via --from
  • Tamper-evident audit log -- PHANTOM_AUDIT=1 writes vault events as JSONL to ~/.phantom/audit.log. Each entry is chained with HMAC-SHA256; phantom audit verify detects tampering. phantom audit show/tail/path for log access.
  • Response scrubbing -- Prevents secrets from leaking in API responses back to the AI
  • Script wrapping -- phantom wrap patches package.json so every npm script runs through the proxy
  • Watch mode -- phantom watch monitors .env files for new unprotected secrets
  • Multi-project scanner -- phantom init --all <DIR> protects every git repo with a .env under <DIR> in one command (with --dry-run); --jobs N controls parallelism
  • Multi-IDE setup -- phantom setup --client claude|cursor|windsurf|codex writes the right MCP config for each AI tool, or --print for a generic snippet
  • Agent readiness -- phantom agent doctor and phantom agent report --json answer whether a repo is safe for Claude Code, Codex, Cursor, Windsurf, and other agents
  • Enriched diagnostics -- phantom doctor reports install source, vault backend, audit-log status, Argon2 params, and MCP wiring per client
  • Secret explainer -- phantom why <KEY> explains detection heuristics
  • Cross-project copy -- phantom copy shares secrets between project vaults
  • Team vaults -- Shared vaults with role-based access control
  • Built-in service routing -- OpenAI, Anthropic, Stripe, Supabase, and custom services via .phantom.toml
  • Threat model -- See THREAT_MODEL.md for assets, actors, mitigations, and known gaps

Installation

npm (recommended)

bash
$ npm install -g phantom-secrets

Or use directly with npx:

bash
$ npx phantom-secrets init

Claude Code MCP

bash
$ claude mcp add phantom-secrets-mcp -- npx phantom-secrets-mcp

Cargo

bash
$ cargo install phantom-secrets

Architecture

5-crate Rust workspace + Next.js cloud backend:

CrateRole
phantom-coreConfig (.phantom.toml), .env parsing/rewriting, token generation, auth, cloud client
phantom-vaultVaultBackend trait: OS keychain + encrypted file fallback, ChaCha20-Poly1305 crypto
phantom-proxyHTTP reverse proxy on 127.0.0.1. Streaming token replacement for text/*/form bodies; buffered+scoped replacement for JSON. SSE/streaming preserved. TLS forwarding.
phantom-cliclap-based CLI binary with agent readiness, proxy lifecycle, audit, import/export, sync, and team workflows
phantom-mcpMCP server binary (rmcp SDK), stdio transport, 25 tools

apps/web -- Next.js backend at phm.dev for cloud vault sync, GitHub OAuth, and Stripe billing.

npm packages: phantom-secrets (CLI), phantom-secrets-mcp (MCP server).

CI runs the Rust test suite and clippy across the workspace before release.

Security

  • Secrets never on disk in your project directory -- real values live only in the OS keychain or encrypted vault
  • ChaCha20-Poly1305 encryption for file vault and cloud sync, Argon2id key derivation
  • Zero-knowledge cloud -- server stores only ciphertext; encryption key never leaves the client
  • 256-bit CSPRNG tokens -- phm_ prefix ensures they never collide with real API key formats
  • Proxy binds 127.0.0.1 only -- never exposed to the network
  • Secrets zeroized from memory after injection via the zeroize crate
  • Allowlist model -- proxy only injects secrets for explicitly configured service patterns

See SECURITY.md for the responsible disclosure policy and THREAT_MODEL.md for the full threat model (assets, actors, mitigations, known gaps, cryptography summary).

Pricing

FreeProEnterprise
Local vaultsUnlimitedUnlimitedUnlimited
Cloud vaults1UnlimitedUnlimited
MCP serverYesYesYes
Cloud syncYesYesYes
Team features----Yes
Price$0$8/moContact us

Links

  • phm.dev -- Cloud dashboard and account management
  • Getting Started Guide
  • Security Model
  • Threat Model
  • Troubleshooting
  • Contributing

Contributing

We love PRs. Start with CONTRIBUTING.md, pick a good first issue, or open a discussion to talk through an idea. Be excellent to each other β€” see CODE_OF_CONDUCT.md.

Star history

Phantom Secrets star history

If Phantom saves you from leaking a key β€” or even just from worrying about it β€” please star the repo ⭐. It's the single biggest signal we use to know what to build next.

License

MIT β€” see LICENSE.

Related MCP Servers

View all in Security View all alternatives
  • E
    Enigmagent Mcp

    Local AES-256-GCM vault for AI agents. Secrets stay local, LLMs never see real API keys.

    πŸ”’ Security0 views
    Compare vs Enigmagent Mcp β†’
  • Shield logoShield

    Local guardrail proxy for AI coding agents. Wraps any MCP server (stdio or Streamable HTTP) and blocks destructive tool calls β€” DROP TABLE, rm -rf, force-push β€” before they execute. MCP supply-chain protection: TOFU tool-catalog pinning against rug pulls, plus tool-description and tool-result scanning for tool poisoning and prompt injection. 51 starter rules, approval gates, audit logging. Single binary, Apache-2.0.

    πŸ”’ Security3 views
    Compare vs Shield β†’
  • M
    Mcp Bastion

    Reliability + security proxy for MCP: runtime tool-security and a compliance-mapped audit trail.

    πŸ”’ Security0 views
    Compare vs Mcp Bastion β†’
  • C
    CrowdStrike Falcon MCP Server

    Connects AI agents with CrowdStrike Falcon for security analysis and automation.

    πŸ”’ Security0 views
    Compare vs CrowdStrike Falcon MCP Server β†’

Frequently Asked Questions about Phantom Secrets

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "phantom-secrets": { "command": "npx", "args": ["-y", "Phantom Secrets"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewPhantom Secrets AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/phantom-secrets?style=directory)](https://allmcps.com/mcp/phantom-secrets)
HTML Embed
<a href="https://allmcps.com/mcp/phantom-secrets"><img src="https://allmcps.com/api/badge/phantom-secrets?style=directory" alt="Phantom Secrets on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ”’Security
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
0/4 checks healthy over the last 6h
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ”’ Security β†’Best MCP servers for Security β†’Alternatives to Phantom Secrets β†’Install in Claude DesktopInstall in CursorInstall in VS Code