# anubis_mcp v1.0.0 - Table of Contents Model Context Protocol (MCP) implementation in Elixir with Phoenix integration ## Pages - Getting Started - [Anubis MCP](readme.md) - [Welcome to Anubis MCP](introduction.md) - Building with Anubis - [Building a Client](building-a-client.md) - [Building a Server](building-a-server.md) - Patterns & Reference - [Recipes](recipes.md) - [API Reference](reference.md) - Project Info - [Changelog](changelog.md) - [Contributing to Anubis MCP](contributing.md) - [LICENSE](license.md) ## Modules - [Anubis.Client](Anubis.Client.md): MCP (Model Context Protocol) client for connecting to MCP servers. - [Anubis.Client.Operation](Anubis.Client.Operation.md): Represents an operation to be performed by the MCP client. - [Anubis.MCP.Error](Anubis.MCP.Error.md): Fluent API for building MCP protocol errors. - [Anubis.MCP.Message](Anubis.MCP.Message.md): Handles parsing and validation of MCP (Model Context Protocol) messages using the Peri library. - [Anubis.MCP.Response](Anubis.MCP.Response.md): Represents successful responses in the MCP protocol. - [Anubis.Protocol](Anubis.Protocol.md): MCP protocol version management. - [Anubis.Protocol.Behaviour](Anubis.Protocol.Behaviour.md): Behaviour that each MCP protocol version module must implement. - [Anubis.Protocol.Registry](Anubis.Protocol.Registry.md): Registry for MCP protocol version modules. - [Anubis.Protocol.V2024_11_05](Anubis.Protocol.V2024_11_05.md): Protocol implementation for MCP specification version 2024-11-05. - [Anubis.Protocol.V2025_03_26](Anubis.Protocol.V2025_03_26.md): Protocol implementation for MCP specification version 2025-03-26. - [Anubis.Protocol.V2025_06_18](Anubis.Protocol.V2025_06_18.md): Protocol implementation for MCP specification version 2025-06-18. - [Anubis.Server](Anubis.Server.md): Build MCP servers that extend language model capabilities. - [Anubis.Server.Component.Prompt](Anubis.Server.Component.Prompt.md): Defines the behaviour for MCP prompts. - [Anubis.Server.Component.Resource](Anubis.Server.Component.Resource.md): Defines the behaviour for MCP resources. - [Anubis.Server.Component.Tool](Anubis.Server.Component.Tool.md): Defines the behaviour for MCP tools. - [Anubis.Server.Context](Anubis.Server.Context.md): Read-only session and request context, set by the SDK before each callback. - [Anubis.Server.Frame](Anubis.Server.Frame.md): The Anubis Frame — pure user state + read-only context. - [Anubis.Server.Registry](Anubis.Server.Registry.md): Behaviour for pluggable session registries and deterministic naming utilities. - [Anubis.Server.Registry.Local](Anubis.Server.Registry.Local.md): ETS-based session registry for HTTP transports. - [Anubis.Server.Registry.None](Anubis.Server.Registry.None.md): No-op registry for STDIO transport. - [Anubis.Server.Response](Anubis.Server.Response.md): Fluent interface for building MCP component responses. - [Anubis.Server.Session](Anubis.Server.Session.md): Per-client MCP session process. - [Anubis.Server.Session.Store](Anubis.Server.Session.Store.md): Behaviour for session persistence adapters. - [Anubis.Server.Session.Store.Redis](Anubis.Server.Session.Store.Redis.md): Redis-based session store implementation. - [Anubis.Server.Transport.SSE](Anubis.Server.Transport.SSE.md): SSE (Server-Sent Events) transport implementation for MCP servers. - [Anubis.Server.Transport.SSE.Plug](Anubis.Server.Transport.SSE.Plug.md): A Plug implementation for the SSE (Server-Sent Events) transport. - [Anubis.Server.Transport.STDIO](Anubis.Server.Transport.STDIO.md): STDIO transport implementation for MCP servers. - [Anubis.Server.Transport.StreamableHTTP](Anubis.Server.Transport.StreamableHTTP.md): StreamableHTTP transport implementation for MCP servers. - [Anubis.Server.Transport.StreamableHTTP.Plug](Anubis.Server.Transport.StreamableHTTP.Plug.md): A Plug implementation for the Streamable HTTP transport. - [Anubis.Transport](Anubis.Transport.md): Functional behaviour for MCP transport implementations. - [Anubis.Transport.Behaviour](Anubis.Transport.Behaviour.md): Defines the behavior that all transport implementations must follow. - [Anubis.Transport.SSE](Anubis.Transport.SSE.md): A transport implementation that uses Server-Sent Events (SSE) for receiving messages and HTTP POST requests for sending messages back to the server. - [Anubis.Transport.STDIO](Anubis.Transport.STDIO.md): A transport implementation that uses standard input/output. - [Anubis.Transport.StreamableHTTP](Anubis.Transport.StreamableHTTP.md): A transport implementation that uses Streamable HTTP as specified in MCP 2025-03-26. - [Anubis.Transport.WebSocket](Anubis.Transport.WebSocket.md): A transport implementation that uses WebSockets for bidirectional communication with the MCP server. - Exceptions - [Anubis.Server.ConfigurationError](Anubis.Server.ConfigurationError.md): Raised when required MCP server configuration is missing or invalid. ## Mix Tasks - [mix anubis.sse.interactive](Mix.Tasks.Anubis.Sse.Interactive.md): Mix task to test the SSE transport implementation, interactively sending commands. - [mix anubis.stdio.interactive](Mix.Tasks.Anubis.Stdio.Interactive.md): Mix task to test the STDIO transport implementation, interactively sending commands. - [mix anubis.streamable_http.interactive](Mix.Tasks.Anubis.StreamableHttp.Interactive.md): Mix task to test the Streamable HTTP transport implementation, interactively sending commands. - [mix anubis.websocket.interactive](Mix.Tasks.Anubis.Websocket.Interactive.md): Mix task to test the WebSocket transport implementation, interactively sending commands.