MCP.so
登录

easyMcp

@wenb1n-dev

关于 easyMcp

Enable developers to quickly build an MCP server service framework that supports all Model Context Protocol (MCP) transfer modes (STDIO, SSE, Streamable Http)。使开发者快速的搭建一个支持mcp协议所有传输方式(STDIO、SSE、StreamableHttp)的mcp server服务框架

基本信息

分类

开发工具

运行时

python

传输方式

stdio

发布者

wenb1n-dev

配置

暂无标准配置

该服务器的 README 中没有可解析的 MCP 配置块,请前往代码仓库查看安装说明。

代码仓库

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is easyMcp?

easyMcp is a framework for quickly building an extensible MCP (Model Context Protocol) server. It supports all MCP transmission modes: STDIO, SSE, and Streamable HTTP. The project is aimed at developers who need to create custom tools for MCP clients such as Cursor or Cline.

How to use easyMcp?

First, optionally define configuration in src/config/.env. Second, create your own tool class in src/handles by inheriting from BaseHandler and implementing the required methods. Then start the server with uv run src/server.py (with optional flags --sse or --stdio for the respective modes). Finally, add the appropriate MCP JSON configuration to your client.

Key features of easyMcp

  • Supports STDIO, SSE, and Streamable HTTP transports.
  • Two-step setup: optional config file + custom tool creation.
  • Tool classes inherit a simple BaseHandler interface.
  • Uses uv for dependency management and runtime.
  • Example included for MySQL database integration.

Use cases of easyMcp

  • Create a custom MCP tool that queries a MySQL database.
  • Build a lightweight MCP server for local or remote AI assistants.
  • Extend an existing MCP client (e.g., Cursor, Cline) with new capabilities.

FAQ from easyMcp

What is easyMcp?

easyMcp is a framework to quickly build an extensible MCP server supporting all transmission modes (STDIO, SSE, Streamable HTTP).

What runtime or dependencies does easyMcp require?

The project requires uv (a Python package manager) to install dependencies and run the server. The source code is in Python.

How do I add my own tool to easyMcp?

Create a new Python file in src/handles, inherit from BaseHandler, define name, description, get_tool_description, and run_tool methods, then import the class in __init__.py.

Where do I store configuration data?

Configuration is stored in a .env file at src/config/.env. Environment variables can also be set in the client’s MCP JSON block (especially for STDIO mode).

What transport modes does easyMcp support?

It supports all three MCP transport modes: STDIO, SSE, and Streamable HTTP. The mode is selected via command-line flags when starting the server.

评论

开发工具 分类下的更多 MCP 服务器