Anubis MCP
MCP ServerFree** (Elixir) - A high-performance and high-level Model Context Protocol (MCP) implementation in Elixir. Think like "Live View" for MCP.
Capabilities12 decomposed
bifurcated mcp client-server implementation with unified api
Medium confidenceAnubis MCP provides both client and server implementations within a single Elixir library, allowing developers to build MCP-enabled applications that can simultaneously act as clients connecting to external MCP servers and as servers exposing capabilities to AI assistants. The architecture centers on Anubis.Server and Anubis.Client modules with shared transport abstraction, enabling code reuse and consistent patterns across bidirectional communication. This dual-mode design leverages Elixir's concurrency primitives (Process.send_after/3 for timeouts, GenServer patterns) to manage request state and session lifecycle.
Unified client-server SDK in a single library with shared transport abstraction, leveraging Elixir's lightweight processes and fault tolerance for concurrent request handling — unlike Python/Node.js MCP SDKs that typically separate client and server concerns
Provides native Elixir concurrency advantages (thousands of concurrent MCP connections per process) and integrated fault tolerance that Python/Node.js SDKs must layer on top of their runtimes
transport-agnostic protocol abstraction with behavior-based polymorphism
Medium confidenceAnubis MCP abstracts transport mechanisms through Elixir behavior modules, allowing the same client and server code to operate over STDIO, StreamableHTTP, WebSocket, and SSE transports without code changes. Each transport implementation (e.g., Anubis.Server.Transport.StreamableHTTP.Plug for Phoenix/Plug integration) handles serialization, connection lifecycle, and message framing independently. The behavior-based design enables runtime transport selection and seamless integration with existing Elixir web frameworks via Plug middleware.
Behavior-based transport abstraction allowing zero-code-change transport switching, with native Phoenix/Plug integration via Anubis.Server.Transport.StreamableHTTP.Plug — most MCP SDKs hardcode transport choice at initialization
Eliminates transport lock-in and enables seamless web framework integration that Python/Node.js MCP libraries require custom adapters to achieve
comprehensive documentation and example servers
Medium confidenceAnubis MCP includes extensive documentation covering core concepts, architecture patterns, and step-by-step tutorials for building clients and servers. Example servers demonstrate common patterns and best practices, enabling developers to quickly understand MCP concepts and implement their own servers. The documentation is organized by use case (client building, server building, transport selection) and includes API reference material.
Comprehensive documentation with architecture-focused explanations and example servers covering multiple transport mechanisms, providing context beyond API reference — most MCP SDKs provide minimal documentation or API-only reference
Architecture-focused documentation and example servers reduce learning curve compared to Python/Node.js SDKs with minimal documentation or community examples
elixir-native concurrency model for high-throughput mcp operations
Medium confidenceAnubis MCP leverages Elixir's lightweight process model and OTP supervision trees to enable thousands of concurrent MCP operations with minimal resource overhead. Each MCP client connection, server session, or request can be managed by independent Elixir processes, enabling natural parallelism without explicit threading or async/await syntax. The OTP application framework provides fault tolerance, automatic process restart, and distributed deployment capabilities.
Native Elixir process model enabling thousands of concurrent MCP operations per VM with automatic fault recovery via OTP supervision trees — Python/Node.js SDKs require external infrastructure (thread pools, event loops, Kubernetes) for equivalent scalability
Lightweight process overhead and built-in fault tolerance provide superior scalability and reliability compared to Python/Node.js SDKs that require external orchestration for high-concurrency scenarios
component-based capability definition with frame state management
Medium confidenceAnubis MCP provides a component system (Tools, Resources, Prompts) that developers register with Anubis.Server.Frame, which maintains session state including registered components and pagination settings. Components are defined as Elixir modules implementing specific behaviors, enabling type-safe, composable capability definitions. The Frame state management handles component lifecycle, discovery, and pagination for large capability sets, abstracting the complexity of MCP's capability advertisement protocol.
Frame-based state management with integrated pagination and component lifecycle handling, using Elixir's module system for type-safe capability composition — most MCP SDKs require manual protocol message construction or lack built-in pagination support
Provides compile-time type safety and runtime state management that Python/Node.js MCP SDKs achieve through runtime validation or manual boilerplate
schema dsl for type-safe tool and resource definitions
Medium confidenceAnubis MCP includes a Schema DSL that enables developers to define tool parameters and resource schemas using Elixir syntax, generating MCP-compliant JSON Schema automatically. This DSL abstracts JSON Schema complexity, providing a higher-level interface for specifying input/output types, validation rules, and documentation. The schema definitions are compiled into MCP protocol messages, ensuring type consistency between Elixir code and AI assistant expectations.
Macro-based Schema DSL that compiles to JSON Schema at compile-time, eliminating runtime schema parsing overhead and enabling type-checking — Python/Node.js MCP SDKs typically use runtime schema builders or manual JSON Schema
Compile-time schema validation and zero-runtime schema parsing overhead compared to Python/Node.js SDKs that validate schemas at request time
request-response lifecycle management with timeout handling
Medium confidenceAnubis MCP's client implementation (Anubis.Client.State) manages pending requests using Anubis.Client.Request structs and handles timeout timers via Elixir's Process.send_after/3, enabling automatic request cleanup and timeout detection without external timer libraries. The state machine tracks request lifecycle from initiation through response receipt or timeout, supporting concurrent requests with independent timeout policies. This design leverages Elixir's lightweight process model to handle thousands of concurrent requests with minimal overhead.
Process.send_after/3-based timeout handling with automatic cleanup via Elixir's process model, enabling thousands of concurrent requests without external timer infrastructure — Python/Node.js SDKs typically use thread pools or event loop timers
Native Elixir concurrency primitives provide lower-overhead request tracking than Python/Node.js SDKs that must manage thread/event loop overhead for timeout handling
plug middleware integration for http-based mcp servers
Medium confidenceAnubis MCP integrates with Phoenix and Plug applications through Anubis.Server.Transport.StreamableHTTP.Plug, enabling MCP servers to be deployed as HTTP endpoints within existing web applications. The Plug middleware handles HTTP request/response serialization, streaming response bodies for long-running operations, and connection lifecycle management. This integration allows developers to expose MCP capabilities alongside traditional REST APIs in a single Phoenix application.
Native Plug middleware integration with streaming response support, allowing MCP servers to coexist with Phoenix routes without separate processes — most MCP SDKs require standalone HTTP servers or custom middleware
Eliminates separate server process overhead and enables unified request handling with Phoenix routing compared to Python/Node.js SDKs that typically require separate Flask/Express servers
websocket transport with :gun client library integration
Medium confidenceAnubis MCP provides WebSocket transport support for both client and server implementations, with client-side WebSocket connections handled via the :gun HTTP client library. This enables real-time, bidirectional MCP communication over WebSocket, supporting long-lived connections with low-latency message delivery. The WebSocket transport is suitable for interactive AI assistants and real-time tool execution scenarios where HTTP request-response latency is unacceptable.
:gun-based WebSocket client with native Elixir process model for connection management, enabling thousands of concurrent WebSocket connections per Erlang VM — Python/Node.js SDKs typically use asyncio or event loop-based WebSocket clients
Lightweight process-per-connection model provides better scalability for high-concurrency WebSocket scenarios than Python/Node.js SDKs limited by thread/event loop overhead
stdio transport for cli tool integration
Medium confidenceAnubis MCP supports STDIO transport, enabling MCP servers to be invoked as command-line tools that communicate via standard input/output streams. This transport is ideal for integrating MCP servers with AI assistants and CLI tools that expect subprocess-based tool execution. The STDIO transport handles message framing, serialization, and process lifecycle management, abstracting the complexity of subprocess communication.
Native STDIO transport with Burrito cross-platform binary compilation, enabling single-command deployment of MCP servers as standalone executables — most MCP SDKs require language-specific runtime or Docker containerization
Compiled binary distribution via Burrito eliminates runtime dependencies compared to Python/Node.js SDKs that require interpreter installation and dependency management
cross-platform binary compilation with burrito
Medium confidenceAnubis MCP integrates with Burrito, a Mix-based build system that compiles Elixir applications into standalone binaries for macOS, Linux, and Windows. This enables developers to distribute MCP servers as single executables without requiring Elixir runtime installation on target machines. The build system handles dependency bundling, platform-specific compilation, and binary optimization, simplifying deployment and distribution.
Burrito integration for zero-dependency binary distribution, enabling MCP servers to be deployed as single executables without Elixir runtime — Python/Node.js SDKs typically require PyPI/npm installation or Docker containerization
Eliminates runtime dependency management and installation complexity compared to Python/Node.js SDKs that require interpreter and package manager setup
comprehensive testing infrastructure with interactive cli tools
Medium confidenceAnubis MCP provides built-in testing utilities and interactive CLI tools for validating MCP server implementations during development. The testing infrastructure includes fixtures, mock transports, and assertion helpers that enable developers to test client-server interactions without external dependencies. Interactive CLI tools allow manual testing and debugging of MCP servers, supporting rapid iteration during development.
Integrated testing infrastructure with mock transports and interactive CLI tools built into the library, enabling zero-external-dependency testing — most MCP SDKs require separate test servers or manual testing
Built-in testing utilities eliminate external test infrastructure overhead compared to Python/Node.js SDKs that require separate test servers or manual validation
Capabilities are decomposed by AI analysis. Each maps to specific user intents and improves with match feedback.
Related Artifactssharing capabilities
Artifacts that share capabilities with Anubis MCP, ranked by overlap. Discovered automatically through the match graph.
@modelcontextprotocol/sdk
Model Context Protocol implementation for TypeScript
valjs-mcp-alpha
ModelContextProtocol server that bridges to Val Town MCP tools
exa-mcp-server
Exa MCP for web search and web crawling!
inspector
Visual testing tool for MCP servers
llm-analysis-assistant
** <img height="12" width="12" src="https://raw.githubusercontent.com/xuzexin-hz/llm-analysis-assistant/refs/heads/main/src/llm_analysis_assistant/pages/html/imgs/favicon.ico" alt="Langfuse Logo" /> - A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and ca
mcp-cli
** a cli inspector for MCP servers
Best For
- ✓Elixir teams building AI-integrated backend services
- ✓Developers needing bidirectional MCP communication in a single process
- ✓Teams leveraging Elixir's fault tolerance for production MCP deployments
- ✓Elixir web developers integrating MCP into Phoenix applications
- ✓Teams needing multi-transport MCP deployments (CLI + HTTP + WebSocket)
- ✓Developers building MCP infrastructure that must support heterogeneous clients
- ✓Elixir developers new to MCP protocol and architecture
- ✓Teams evaluating Anubis MCP for production use
Known Limitations
- ⚠Elixir-only implementation — no native support for Python, Node.js, or Go ecosystems
- ⚠Requires understanding of Elixir's process model and GenServer patterns for effective use
- ⚠Client state management via Anubis.Client.State uses in-memory request tracking — no built-in persistence across restarts
- ⚠SSE transport is deprecated — WebSocket or HTTP recommended for new projects
- ⚠Transport selection is compile-time or startup-time configuration — cannot dynamically switch mid-session
- ⚠Plug integration requires Phoenix/Plug knowledge; not suitable for non-web Elixir applications without additional setup
Requirements
Input / Output
UnfragileRank
UnfragileRank is computed from adoption signals, documentation quality, ecosystem connectivity, match graph feedback, and freshness. No artifact can pay for a higher rank.
About
** (Elixir) - A high-performance and high-level Model Context Protocol (MCP) implementation in Elixir. Think like "Live View" for MCP.
Categories
Alternatives to Anubis MCP
Are you the builder of Anubis MCP?
Claim this artifact to get a verified badge, access match analytics, see which intents users search for, and manage your listing.
Get the weekly brief
New tools, rising stars, and what's actually worth your time. No spam.
Data Sources
Looking for something else?
Search →