Hermes MCP

by cloudwalk

MCP Client 170 stars
  • agent-framework

Elixir Model Context Protocol (MCP) SDK

About

What is Hermes MCP?

Hermes MCP is a high-performance Elixir SDK for the Model Context Protocol (MCP). It provides a feature‑complete client implementation conforming to the MCP 2024‑11‑05 specification and is available both as a Hex package and a standalone CLI binary. The library targets Elixir developers who need to interact with MCP servers from Elixir applications or test MCP servers interactively.

How to use Hermes MCP?

Add {:hermes_mcp, "~> 0.5"} to your mix.exs dependencies, or download the CLI binary from the GitHub releases page and run it with transport arguments (e.g. --transport sse --base-url="http://localhost:8000"). To set up a client, start a Hermes.Client process before its associated transport process, then use functions like Hermes.Client.call_tool/3 to make requests.

Key features of Hermes MCP

- Complete MCP client implementation (2024‑11‑05)
- Multiple transport options: STDIO, HTTP/SSE, and WebSocket
- Built‑in connection supervision and automatic recovery
- Comprehensive capability negotiation
- Progress tracking and cancellation support
- Structured logging system

Use cases of Hermes MCP

- Interactively test MCP servers via CLI or Mix tasks
- Integrate MCP client capabilities into an Elixir application
- Automate tool, resource, and prompt exploration from Elixir
- Build robust MCP‑based workflows with automatic recovery

FAQ from Hermes MCP

Is Hermes MCP stable?

The library is under active development and may expect breaking changes. It provides a feature‑complete client for the MCP 2024‑11‑05 specification.

Which platforms and Elixir versions are supported?

Hermes MCP runs on any platform supported by the Erlang VM. The CLI binary is available for Linux and macOS (Intel and ARM). The library requires Elixir and can be added as a dependency in a standard mix project.

Does Hermes MCP support server implementations?

Currently Hermes MCP offers only the client. Server‑side components (STDIO, HTTP/SSE, Streamable HTTP transport) are planned for future releases.

Which MCP transports are supported?

The client supports STDIO, HTTP/SSE, and WebSocket transports.

What is the license?

Hermes MCP is released under the MIT License.

Details

Author
cloudwalk
GitHub stars
170
Category
agent-framework
Repository
cloudwalk/hermes-mcp

Hermes MCP

hex.pm
docs
ci

> [!WARNING]
>
> This library is under active development, may expect breaking changes

A high-performance Model Context Protocol (MCP) implementation in Elixir.

Overview

Hermes MCP is a comprehensive Elixir SDK for the Model Context Protocol, aiming to provide complete client and server implementations. The library leverages Elixir's exceptional concurrency model and fault tolerance capabilities to deliver a robust MCP experience.

Currently, Hermes MCP offers a feature-complete client implementation conforming to the MCP 2024-11-05 specification. Server-side components are planned for future releases.

Roadmap

Current Status

- [x] Complete client implementation (MCP 2024-11-05)
- [x] Multiple transport options (STDIO, HTTP/SSE, and WebSocket)
- [x] Built-in connection supervision and automatic recovery
- [x] Comprehensive capability negotiation
- [x] Progress tracking and cancellation support
- [x] Structured logging system

Upcoming

- [ ] Client support for MCP 2025-03-26 specification
- Authorization framework (OAuth 2.1)
- Streamable HTTP transport
- JSON-RPC batch operations
- Enhanced tool annotations

- [ ] Server Implementation
- STDIO transport
- HTTP/SSE transport
- Streamable HTTP transport
- Support for resources, tools, and prompts

- [ ] Sample Implementations
- Reference servers
- Integration examples with popular Elixir libraries

For a more detailed roadmap, see ROADMAP.md.

Installation

Library Usage

Add Hermes MCP to your dependencies in mix.exs:

def deps do
  [
    {:hermes_mcp, "~> 0.5"}  # x-release-please-version
  ]
end

Standalone CLI Installation

Download the appropriate binary for your platform from the GitHub releases page.

# Make it executable (Linux/macOS)

or hermes_cli-macos-intel, hermes_cli-macos-arm

mv hermes_mcp_linux hermes-mcp && chmod +x hermes-mcp

Run it

./hermes-mcp --transport sse --base-url="http://localhost:8000"

Quick Start

Interactive Testing

Hermes MCP provides interactive tools for testing MCP servers with a user-friendly CLI.

Using the CLI Binary:

# Test an SSE server
hermes_cli --transport sse --base-url="http://localhost:8000" --base-path="/mcp"

Test a WebSocket server

hermes_cli --transport websocket --base-url="http://localhost:8000" --base-path="/mcp" --ws-path="/ws"

Test a local process via STDIO

hermes_cli --transport stdio --command="mcp" --args="run,path/to/server.py"

Using Mix Tasks (For Elixir Developers):

# Test an SSE server
mix hermes.sse.interactive --base-url="http://localhost:8000" --base-path="/mcp"

Test a WebSocket server

mix hermes.websocket.interactive --base-url="http://localhost:8000" --base-path="/mcp" --ws-path="/ws"

Test a local process via STDIO

mix hermes.stdio.interactive --command="mcp" --args="run,path/to/server.py"

These interactive shells provide commands for listing and calling tools, exploring prompts, and accessing resources.

Setting up a Client

> [!IMPORTANT]
> Process Startup Order: Always start the client process before the transport process. The client hibernates waiting for the transport's :initialize message, so this order prevents race conditions during initialization.

defmodule MyApp.Application do
  use Application

def start(_type, _args) do
children = [
# IMPORTANT: Start the client first - it will hibernate waiting for transport's :initialize message
{Hermes.Client, [
name: MyApp.MCPClient,
transport: [layer: Hermes.Transport.STDIO, name: MyApp.MCPTransport],
client_info: %{
"name" => "MyApp",
"version" => "1.0.0"
},
capabilities: %{
"roots" => %{"listChanged" => true},
"sampling" => %{}
}
]},

# Start the transport after the client
{Hermes.Transport.STDIO, [
name: MyApp.MCPTransport,
client: MyApp.MCPClient,
command: "mcp",
args: ["run", "path/to/server.py"]
]}
]

opts = [strategy: :one_for_all, name: MyApp.Supervisor]
Supervisor.start_link(children, opts)
end
end

Making Client Requests

# Call a tool
{:ok, result} = Hermes.Client.call_tool(MyApp.MCPClient, "example_tool", %{"param" => "value"})

Handle errors properly

case Hermes.Client.call_tool(MyApp.MCPClient, "unavailable_tool", %{}) do {:ok, %Hermes.MCP.Response{}} -> # Handle successful result {:error, %Hermes.MCP.Error{} = err} -> # Handle error response IO.puts(inspect(err, pretty: true)) end

Documentation

For detailed guides and examples, visit the official documentation

Why Hermes?

The library is named after Hermes, the Greek god of boundaries, communication, and commerce. This namesake reflects the core purpose of the Model Context Protocol: to establish standardized communication between AI applications and external tools.

Like Hermes who served as a messenger between gods and mortals, this library facilitates seamless interaction between Large Language Models and various data sources or tools.

Local Development

# Setup the project
mix setup

Run tests

mix test

Code quality

mix lint

Start development MCP servers

Echo server (Python)

just echo-server

Calculator server (Go)

just calculator-server

The MCP servers in priv/dev require:
- Python 3.11+ with uv (for echo server)
- Go 1.21+ (for calculator server)

See CONTRIBUTING.md for detailed contribution guidelines.

License

Hermes MCP is released under the MIT License. See LICENSE for details.