Skip to content

EasyMCP

EasyMCP is a modern Python implementation of the Model Context Protocol (MCP), designed to manage and interact with distributed AI servers, tools, and resources using a consistent and extensible API.


Features

  • ๐ŸŒ Multi-server orchestration via ClientManager
  • ๐Ÿง  Built-in support for tools, resources, and prompts
  • ๐Ÿ”„ Automatic cache invalidation via push notifications
  • ๐Ÿงช Async-native, with support for subprocesses, Docker, SSE transports
  • ๐Ÿ”Œ Easy integration with search engines like Meilisearch

Installation

uv add easymcp

Quickstart

from easymcp.client.ClientManager import ClientManager
from easymcp.client.transports.stdio import StdioServerParameters

mgr = ClientManager()

servers = {
    "timeserver": StdioServerParameters(command="uvx", args=["mcp-timeserver"])
}

await mgr.init(servers)
tools = await mgr.list_tools()

Check out Usage to learn more.