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. 🧠 Knowledge & Memory
  3. Pipe (SPR) MCP Server
P
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/11/2026, 12:06:33 AM

Pipe (SPR) MCP Server

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

AI-native runtime with built-in MCP server. 193 builtins, AI pipelines, RAG, single 7 MB binary.

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": {
    "pipe-spr-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "pipe-spr-mcp-server"
      ]
    }
  }
}

πŸ’‘ 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 Knowledge & Memory

Documentation Overview

Pipe β€” MCP-native runtime for AI infrastructure

CI License: MIT Version SPR MCP

The first language with built-in MCP β€” server and client. 198 builtins, single ~7 MB binary. Zero dependencies.

Quick Install

Terminal
curl -fsSL https://pipe-lang.com/install.sh | bash   # Linux & macOS

Windows (PowerShell): irm https://pipe-lang.com/install.ps1 | iex

The installer downloads the latest release, verifies its SHA256 checksum and installs pipe into ~/.local/bin (or /usr/local/bin when run as root). Pin a version with PIPE_VERSION=v0.9.3. See the full install docs.

The Problem

Running AI in production is harder than it should be:

  • Security β€” LLMs with file access, network, and exec are a liability. You need fine-grained sandboxing at the language level, not afterthought middleware.
  • Performance β€” Sequential API calls turn a 1-second pipeline into a 10-second bottleneck. Parallelism shouldn't require asyncio.gather() boilerplate.
  • Vendor Lock-in β€” Switching from OpenAI to DeepSeek means rewriting your Python SDK code. Provider changes should be one line.
  • Tool Integration β€” Connecting LLMs to external tools (GitHub, databases, filesystems) is a maze of SDKs and API wrappers. MCP should be a language primitive, not a library.

Pipe fixes this at the language level.

What is Pipe?

Pipe is a Semantic Pipeline Runtime (SPR) β€” a pipeline-native language where summarize, translate, and classify sit on the same syntax level as +, sort, and len. Data flows top to bottom through composable transformations. One binary. Zero dependencies.

Python + LangChain (~80 lines):

server.ts
import openai
client = openai.OpenAI()
def summarize(text):
    r = client.chat.completions.create(model="gpt-4o", messages=[{"role":"user","content":text}])
    return r.choices[0].message.content
def translate(text, lang):
    r = client.chat.completions.create(model="gpt-4o",
        messages=[{"role":"system","content":f"Translate to {lang}"},{"role":"user","content":text}])
    return r.choices[0].message.content
text = open("news.txt").read()
print(translate(summarize(text), "de"))

Pipe (5 lines):

pipe
read_file "news.txt"
    > summarize       -- LLM call
    > translate "de"  -- LLM call
    > print

Model Context Protocol

Pipe has built-in MCP β€” both as a server and client. No SDKs, no npm packages, no Python. Pure Go stdlib.

MCP Server β€” Expose your tools

pipe
fn get_weather city
    match city
        | "Berlin" -> "22Β°C, sunny"
        | "London" -> "15Β°C, rainy"
        | _ -> city ++ ": no data"

ai_tool "get_weather" "Get weather for a city" {city: "City name"} get_weather
mcp_server "Weather Agent" "1.0.0"
mcp_serve_stdio

Configure in Claude Desktop (claude_desktop_config.json):

config.json
{ "mcpServers": { "pipe": { "command": "/tmp/pipe", "args": ["agent.pipe"] } } }

MCP Client β€” Use external tools

pipe
ai_provider "deepseek"
ai_set_key "deepseek" (env "DEEPSEEK_API_KEY")

-- Connect to GitHub + Filesystem MCP servers
mcp_use_stdio "npx" "-y" "@modelcontextprotocol/server-github" {GITHUB_TOKEN: (env "GITHUB_TOKEN")}
mcp_use_stdio "npx" "-y" "@modelcontextprotocol/server-filesystem" "/tmp"

-- AI discovers and uses all tools automatically
result: ai_with_tools "You are a DevOps assistant." "Search pipe's open issues and list files in /tmp." 10
print result

Any stdio MCP server works immediately: Filesystem, GitHub, Git, Postgres, SQLite, Slack, Brave Search, Memory, Sequential Thinking β€” anything on npm/uvx.

Use Cases

Log Analysis β†’ Incident Report

pipe
is_critical: fn line
    contains line "critical"

read_file "/var/log/app/errors.log"
    > split "\n"
    > filter is_critical
    > summarize
    > translate "de"
    > save "incident_report.txt"

RAG Pipeline

pipe
ai_provider "deepseek"

docs: read_lines "knowledge_base.txt"
vectors: embed_batch docs

question: "How does the bytecode VM work?"
q_vec: embed question
top: nearest q_vec vectors 3

context: ""
for idx in top
    context: context ++ (at docs idx) ++ "\n---\n"

ask ("Context:\n" ++ context ++ "\nQuestion: " ++ question)
    > print

AI Agent with Tool Calling

pipe
fn get_weather city
    match city
        | "Berlin" -> "22Β°C, sunny"
        | "London" -> "15Β°C, rainy"
        | _ -> city ++ ": no data"

ai_tool "get_weather" "Get current weather for a city" {city: "Name of the city"} get_weather

ai_with_tools "You are a weather assistant." "What's the weather in Berlin and London?"
    > print

Discord CI/CD Notifications

server.ts
import "discord.pipe" as d
ai_provider "deepseek"

-- AI code review per commit, sent as Discord embed
review: ai_chat "Review this code change" diff 800

d.d_webhook_embed (env "DISCORD_WEBHOOK") {
    title: "πŸ”§ CI: Push to master",
    color: 3447003,
    fields: [
        {name: "Changed Files", value: stat},
        {name: "AI Review", value: review}
    ]
}

Comparison: Pipe vs Python + LangChain

Python + LangChainPipe
RAG pipeline~80 LOC~8 LOC
Sandbox LLM accessCustom middlewareOne sandbox_profile block
Switch AI providerRewrite SDK callsai_provider "deepseek"
Deploy to serverDocker + venv + pipscp pipe binary
Parallel LLM callsasyncio.gather() boilerplate>> operator, ai_batch
MCP Server + ClientLibrary-dependent7 builtins, zero deps, 100+ servers
Binary size~500 MB (with deps)~7 MB

Features

  • MCP-native β€” 6 builtins for MCP Server + Client. Pure Go stdlib. Connect to any stdio MCP server
  • Ship AI pipelines 10Γ— faster β€” 18 AI + 6 MCP builtins: no imports, no SDKs, no API wrappers
  • Lock down AI agents in one line β€” Declarative sandbox profiles: restrict exec, write_file, http_get with a single block
  • Deploy in seconds β€” One statically-linked ~7 MB binary. No venv, no pip, no Docker. Linux, macOS, Windows, Raspberry Pi, or your browser via WebAssembly
  • 3 LLM calls in 1.5s, not 4s β€” >> starts any pipeline stage in the background. Futures auto-resolve. ai_batch handles hundreds of texts concurrently with built-in rate limiting
  • No vendor lock-in β€” OpenAI, Anthropic (Claude), DeepSeek, Ollama. Switch with one line. Same code works everywhere
  • Pipeline-native syntax β€” > sequential, >> parallel. Data flows top to bottom β€” readable, composable, debuggable
  • Social platforms built in β€” Discord webhooks and Telegram bots as Pipe modules. AI code reviews, notifications, chat β€” zero API costs for sending
  • Bytecode VM β€” Compile to bytecode, execute ~7Γ— faster with automatic caching
  • Module ecosystem β€” 23 curated modules, registry with version pinning (@1.0.0). pipe -get installs, import by name
  • Built-in testing β€” test blocks with assert_eq, assert_error. Run with pipe -test. Zero setup
  • GitHub Action β€” Run Pipe directly in CI/CD. No installation needed
  • VSCode Extension β€” Syntax highlighting, IntelliSense, LSP-powered diagnostics and completions
  • Self-extracting binary β€” Ship your pipeline as a standalone executable (pipe -build)

Quick Start

server.ts
git clone https://github.com/MachuraHarry/pipe && cd pipe && make build
export DEEPSEEK_API_KEY="sk-..."
./bin/pipe -vm -q -c 'ai_provider "deepseek"; ask "What makes Pipe different?" > print'

Try it in your browser

No install needed β€” Pipe runs fully in your browser via WebAssembly:

Pipe
Open the Pipe Playground β†’

pipe
-- Paste this into the playground and hit Run
levels: ["error","warn","info"]
read_file "server.log"
    > classify levels
    > summarize
    > print

GitHub Action

Run Pipe directly in CI/CD β€” no installation needed:

yaml
- uses: MachuraHarry/pipe/.github/actions/pipe-action@master
  with:
    script: |
      print "Hello from CI/CD!"
      log: exec "git log --oneline -20"
      print (get log "output")

β†’ GitHub Action Documentation

VSCode Extension

Syntax highlighting and full IntelliSense for .pipe files, powered by a Language Server Protocol client (vscode/) and the pipe-lsp server (cmd/pipe-lsp):

  • Completion, hover docs, signature help, go-to-definition, references, rename
  • Diagnostics (parse errors, undefined/unused variables) and semantic highlighting
  • Format document, auto-completion of brackets, auto-indent and code folding
sh
make vsix     # builds the server and packages vscode/pipe-syntax-0.1.0.vsix

Or run the extension in development with F5 from the vscode/ folder. See VSCode Extension Documentation.

Module Ecosystem

Pipe has a curated module library β€” 23 reusable modules with version pinning:

InfrastructureData & CLIAI & AgentsDevToolsSocial
pipe-httpsqliterag-pipe πŸ†•pipe-testdiscord πŸ†•
pipe-clijpipelog-analyzerpipe-validate πŸ†•x πŸ†• (in dev)
pipe-orm πŸ†•pipe-tplsentimenttelegram-bot
pipe-web πŸ†•pipe-datecode-review
translate-batch
changelog-gen
email-classifier
incident-report
parallel-runner
date-formatter
bash
pipe -search                 # Browse modules
pipe -search sql             # Filter by keyword
pipe -get sqlite             # Install latest
pipe -get sqlite@0.8.0       # Install specific version
server.ts
import "sqlite"                            -- database engine
import "pipe-http"                         -- HTTP client
import "discord.pipe" as d                 -- Discord webhooks + bot
import "x.pipe" as x                       -- X (Twitter) API v2

idx: index_create h "knowledge"
index_add idx "Pipe is an AI-native language."
index_search idx "language" 3 > each print

β†’ Ecosystem Documentation | β†’ Contribute a Module

Execution Modes

ModeCommandSpeed
Tree-Walker./bin/pipe script.pipeBaseline
Bytecode VM./bin/pipe -vm -q script.pipe~7Γ— faster

24 AI + MCP Builtins (18 AI + 6 MCP)

Understanding

summarize, translate, classify, extract, ask, generate, generate_json

Speed & Control

ai_stream, ai_batch, ai_parallel, ai_rate_limit, ai_chat, ai_chat_json

Search & Retrieval

web_search, wiki_search, embed, embed_batch, cosine_sim, dot_product, nearest

Agents & Tools

agent, agent_ask, agent_clear, ai_tool, ai_with_tools

MCP β€” Model Context Protocol

mcp_server, mcp_serve_stdio, mcp_serve_sse, mcp_tools, mcp_use_stdio, mcp_use_sse

Configuration

ai_provider, ai_model, ai_timeout, ai_host, ai_cache, ai_set_key

Self-Healing

try_ai, try_ai_log

Advanced Features

Self-Healing Code (try_ai)

pipe
ai_provider "deepseek"

result: try_ai
    "42" * 3           -- E002 Type Error β†’ AI wraps with to_num β†’ 126
catch e
    0                   -- only reached if AI fix fails

print result           -- 126

Parallel Pipeline (>>)

pipe
a: "Frage A"
    >> ask
b: "Frage B"
    >> ask
c: "Frage C"
    >> ask

print a ++ b ++ c   -- Future auto-resolution

Sandbox Profiles

pipe
sandbox_profile "safe" {fs: "read-only", network: false, exec: false, ai: true}
sandbox_profile "agent" {fs: "temp-only", network: true, exec: false, ai: true}

set_sandbox "safe"
read_file "/etc/config"     -- βœ… reading allowed
write_file "/etc/config"    -- ❌ E_SANDBOX blocked

Architecture

Code
Source (.pipe) β†’ Lexer β†’ Parser β†’ AST β†’ [ Tree-Walker | Compiler + VM ]
                                            ↓
                                  Builtins (198 total: 18 ai_*, 6 mcp_*, 174 stdlib)
                                            ↓
                              MCP Server ↔ MCP Clients (stdio + HTTP)
  • 67 token types, 35 AST node types, 42 opcodes
  • ~29,000 LoC Go, 416 tests, 72 example programs
  • Zero dependencies β€” pure Go stdlib

Documentation

β†’ Full documentation (English) β†’ VollstΓ€ndige Dokumentation (Deutsch)

Project Structure

Code
pipe/
β”œβ”€β”€ cmd/
β”‚   β”œβ”€β”€ pipe/main.go           # Entry point
β”‚   └── pipe-lsp/              # Language Server Protocol server (IntelliSense)
β”œβ”€β”€ pkg/
β”‚   β”œβ”€β”€ ai/                    # AI provider integrations
β”‚   β”‚   β”œβ”€β”€ ai.go
β”‚   β”‚   β”œβ”€β”€ ai_test.go
β”‚   β”‚   β”œβ”€β”€ embeddings.go
β”‚   β”‚   β”œβ”€β”€ providers.go
β”‚   β”‚   └── tools.go
β”‚   β”œβ”€β”€ analysis/              # IntelliSense library (builtins, diagnostics, completion…)
β”‚   β”œβ”€β”€ ast/                   # AST node definitions
β”‚   β”‚   └── ast.go
β”‚   β”œβ”€β”€ build/                 # Self-extracting binary builder
β”‚   β”‚   └── build.go
β”‚   β”œβ”€β”€ cache/                 # Bytecode cache
β”‚   β”‚   β”œβ”€β”€ cache.go
β”‚   β”‚   └── cache_test.go
β”‚   β”œβ”€β”€ compiler/              # Compiler to bytecode
β”‚   β”‚   β”œβ”€β”€ compiler.go
β”‚   β”‚   β”œβ”€β”€ compiler_test.go
β”‚   β”‚   └── opcode.go
β”‚   β”œβ”€β”€ eval/                  # Tree-walk interpreter
β”‚   β”‚   β”œβ”€β”€ builtins.go
β”‚   β”‚   β”œβ”€β”€ eval.go
β”‚   β”‚   └── eval_test.go
β”‚   β”œβ”€β”€ formatter/             # Code formatter
β”‚   β”‚   β”œβ”€β”€ formatter.go
β”‚   β”‚   └── formatter_test.go
β”‚   β”œβ”€β”€ lexer/                 # Lexer and tokens
β”‚   β”‚   β”œβ”€β”€ lexer.go
β”‚   β”‚   β”œβ”€β”€ lexer_test.go
β”‚   β”‚   └── token.go
β”‚   β”œβ”€β”€ mcp/                   # MCP server + client (zero-dependency)
β”‚   β”‚   β”œβ”€β”€ types.go
β”‚   β”‚   β”œβ”€β”€ server.go
β”‚   β”‚   β”œβ”€β”€ client.go
β”‚   β”‚   β”œβ”€β”€ stdio.go
β”‚   β”‚   └── schema.go
β”‚   β”œβ”€β”€ object/                # Runtime objects
β”‚   β”‚   β”œβ”€β”€ ai_builtins_test.go
β”‚   β”‚   β”œβ”€β”€ environment.go
β”‚   β”‚   └── object.go
β”‚   β”œβ”€β”€ parser/                # Parser
β”‚   β”‚   β”œβ”€β”€ parser.go
β”‚   β”‚   └── parser_test.go
β”‚   β”œβ”€β”€ stdlib/                # Standard library helpers
β”‚   └── vm/                    # Bytecode VM
β”‚       β”œβ”€β”€ vm.go
β”‚       └── vm_test.go
β”œβ”€β”€ examples/                  # ~60 example programs
β”‚   β”œβ”€β”€ mcp_server.pipe        # MCP server with weather/docs/shell tools
β”‚   β”œβ”€β”€ mcp_filesystem.pipe    # MCP client using filesystem server
β”‚   β”œβ”€β”€ mcp_github.pipe        # MCP client using GitHub server
β”‚   β”œβ”€β”€ mcp_combined.pipe      # MCP hub: own tools + external servers
β”‚   β”œβ”€β”€ ai_tool_demo.pipe
β”‚   β”œβ”€β”€ selfhost/              # Self-hosting lexer/parser
β”‚   └── ...
β”œβ”€β”€ test/integration/          # Integration tests
β”œβ”€β”€ vscode/                    # VSCode extension (syntax highlighting + LSP client)
β”‚   β”œβ”€β”€ src/                   # LSP client bootstrap (TypeScript)
β”‚   β”œβ”€β”€ syntaxes/pipe.tmLanguage.json
β”‚   └── package.json
β”œβ”€β”€ docs/                      # Documentation (DE + EN)
β”‚   β”œβ”€β”€ en/                    # English docs (25 chapters)
β”‚   └── de/                    # German docs (25 chapters)
β”œβ”€β”€ website/                   # Project website
β”œβ”€β”€ Makefile
β”œβ”€β”€ go.mod
└── LICENSE

Contributing

See CONTRIBUTING.md.

License

MIT β€” see LICENSE.

Related MCP Servers

View all in Knowledge & Memory View all alternatives
  • Moxie Docs MCP logoMoxie Docs MCP
    β˜… Featured

    MCP & Agent Skills for Automated Documentation, and codebase conventions + context

    🧠 Knowledge & Memory17 views
    Compare vs Moxie Docs MCP β†’
  • Mcp Server logoMcp Server

    Apple Developer Documentation with Semantic Search, RAG, and AI reranking for MCP clients

    🧠 Knowledge & Memory0 views
    Compare vs Mcp Server β†’
  • V
    Velocirag

    Lightning-fast RAG for AI agents. 4-layer fusion, ONNX Runtime, sub-200ms search.

    🧠 Knowledge & Memory0 views
    Compare vs Velocirag β†’
  • Memora logoMemora

    Persistent memory with knowledge graph visualization, semantic/hybrid search, cloud sync (S3/R2), and cross-session context management.

    🧠 Knowledge & Memory2 views
    Compare vs Memora β†’

Frequently Asked Questions about Pipe (SPR) MCP Server

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "pipe-spr-mcp-server": { "command": "npx", "args": ["-y", "Pipe (SPR) MCP Server"] } }

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 PreviewPipe (SPR) MCP Server AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/pipe-spr-mcp-server?style=directory)](https://allmcps.com/mcp/pipe-spr-mcp-server)
HTML Embed
<a href="https://allmcps.com/mcp/pipe-spr-mcp-server"><img src="https://allmcps.com/api/badge/pipe-spr-mcp-server?style=directory" alt="Pipe (SPR) MCP Server on AllMCPs" /></a>

Technical Specs & Signals

Category🧠Knowledge & Memory
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
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.

β˜… FeaturedAllMCPs Server logo

AllMCPs Server

The official MCP server for AllMCPs.com - submit and manage tools directly from your AI. The open directory for MCP servers. Connect Claude, Cursor, Windsurf, and AI agents to databases, tools, files, and APIs. Explore 3,181+ servers. AllMCPs is the premier, open directory for discovering, evaluating, and installing Model Context Protocol (MCP) servers to equip AI agents and LLMs with real-world superpowers.

Explore 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 🧠 Knowledge & Memory β†’Best MCP servers for Memory & Knowledge β†’Alternatives to Pipe (SPR) MCP Server β†’Install in Claude DesktopInstall in CursorInstall in VS Code