A Simple Python MCP Solution
Project description
aiomcp
A Simple Python MCP Solution
Mission of aiomcp
A smooth start experience.
Tutorial
Expected Behavior for Version 0.1.0
A simple McpServer
def func(a: int, b: int):
return a + b
impl = ToolImpl()
mcp_server = McpServer("mcp-server-name")
await mcp_server.register_tool(func)
await mcp_server.register_tool(impl.method, alias="tool_alias")
await mcp_server.register_tool(ToolImpl.class_method)
await mcp_server.host("http://127.0.0.1:8000/mcp")
A simple McpClient
mcp_client = McpClient("mcp-client-name")
await mcp_client.initialize("http://127.0.0.1:8000/mcp")
# await mcp_client.initialize(McpHttpTransport("127.0.0.1", 8000, "/mcp"))
# await mcp_client.initialize(McpStdioClientTransport([sys.executable, "server.py"]))
# await mcp_client.initialize(mcp_server) for quick testing without hosting a server
sum_value = await mcp_client.invoke("name", {"a": 1, "b": 2})
# standard MCP functions
# await mcp_client.mcp_tools_list() -> list[McpTool]
# await mcp_client.mcp_tools_call(tool: McpTool, request: McpRequest) -> McpResponse | McpError
Using McpTransports
While McpClient and McpServer handle client/server behavior, they are implemented in a platform-agnostic way by using McpClientTransport/McpServerTransport to handle message streams. Client and server transports usually come in pairs as McpTransport implementations.
mcp_server = McpServer()
await mcp_server.host(McpHttpTransport("127.0.0.1", 8000, "/mcp"))
# await mcp_server.host("http://127.0.0.1:8000/mcp")
mcp_client = McpClient()
await mcp_client.initialize(McpHttpTransport("127.0.0.1", 8000, "/mcp"))
# await mcp_client.initialize("http://127.0.0.1:8000/mcp")
Supported McpTransport implementations:
McpDirectTransport: Simple client driven transport that invokesMcpServerwith minimal MCP protocol overhead.McpMemoryTransport: Single event loop, in-memory transport.McpHttpTransportMcpStdioClientTransport/McpStdioServerTransport: stdio based transport
Sample: Using McpMemoryTransport for local debugging.
transport = McpMemoryTransport()
mcp_server = McpServer()
asyncio.create_task(mcp_server.host(transport))
mcp_client = McpClient()
await mcp_client.initialize(transport)
Authorization
Connect to an OAuth 2.1 protected remote MCP server.
from aiomcp import McpClient, McpAuthorizationClient
authorization = await McpAuthorizationClient.discover("http://remote-server/mcp")
# Or use a bearer token
# authorization = McpAuthorizationClient("your-access-token")
client = McpClient("mcp-client-name")
await client.initialize("http://remote-server/mcp", authorization=authorization)
Use GitHub as the OAuth provider to connect to GitHub's MCP server.
from aiomcp import McpClient, McpAuthorizationClient
server_url = "https://api.githubcopilot.com/mcp/"
authorization = await McpAuthorizationClient.discover(
server_url,
client_id="{YOUR_CLIENT_ID}",
client_secret="{YOUR_CLIENT_SECRET}",
)
client = McpClient("mcp-client-name")
await client.initialize(server_url, authorization=authorization)
Protect your MCP server with built-in OAuth 2.1 + Dynamic Client Registration.
from aiomcp import McpServer, McpAuthorizationServer
server = McpServer("mcp-server-name")
await server.register_tool(add, alias="add")
authorization = McpAuthorizationServer()
await server.host("http://127.0.0.1:8000/mcp", authorization=authorization)
Compatibility flags
aiomcp defaults to broad compatibility, so it can connect to a wider range of MCP clients and servers. Compatibility flags let you opt into stricter protocol checks when you want closer MCP enforcement.
from aiomcp import McpClient, McpServer
mcp_client = McpClient(
flags={"enforce_mcp_tool_result_content": True}
)
mcp_server = McpServer(
flags={"enforce_mcp_initialize_sequence": True}
)
Available client flags
enforce_mcp_tools_capability: require the server to advertise thetoolscapability before the client sendstools/list.enforce_mcp_tool_result_content: reject tool results that omitcontent.enforce_mcp_version_negotiation: reject unsupported negotiated protocol versions.enforce_mcp_session_header: require HTTP session headers where applicable.enforce_mcp_protocol_header: require HTTP protocol version headers where applicable.enforce_mcp_transport_version_consistency: require HTTP header and initialize body protocol versions to match.
Available server flags
enforce_mcp_initialize_sequence: reject requests sent before MCP initialization completes.enforce_mcp_version_negotiation: negotiate only supported protocol versions.enforce_mcp_session_header: require HTTP session headers where applicable.enforce_mcp_protocol_header: require HTTP protocol version headers where applicable.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aiomcp-0.0.8.tar.gz.
File metadata
- Download URL: aiomcp-0.0.8.tar.gz
- Upload date:
- Size: 38.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b001af1edec84a254921ed61ec1c523b0804412b46157a85ef9d706632efcd14
|
|
| MD5 |
c2237395a7f811963504e4b04ad7b5ee
|
|
| BLAKE2b-256 |
e23162b83916fdc8cf25b8b810ecd99a9701c58f61e4f0459091ab0097cc11fc
|
Provenance
The following attestation bundles were made for aiomcp-0.0.8.tar.gz:
Publisher:
publish.yml on yangyuan/aiomcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiomcp-0.0.8.tar.gz -
Subject digest:
b001af1edec84a254921ed61ec1c523b0804412b46157a85ef9d706632efcd14 - Sigstore transparency entry: 1429502034
- Sigstore integration time:
-
Permalink:
yangyuan/aiomcp@c81114ef6d79c275c3e58492e4233b9ef05cd4d8 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/yangyuan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c81114ef6d79c275c3e58492e4233b9ef05cd4d8 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file aiomcp-0.0.8-py3-none-any.whl.
File metadata
- Download URL: aiomcp-0.0.8-py3-none-any.whl
- Upload date:
- Size: 34.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9aee040e178597319f1fd0f3b63b922579c7df022882a703d696036764ae24e5
|
|
| MD5 |
d4af1e9f06072ca4c31b86710aedc0d4
|
|
| BLAKE2b-256 |
900846a9009be7d99fcf8748eba723d3c3416dc23900cfb71127d73a6c805714
|
Provenance
The following attestation bundles were made for aiomcp-0.0.8-py3-none-any.whl:
Publisher:
publish.yml on yangyuan/aiomcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiomcp-0.0.8-py3-none-any.whl -
Subject digest:
9aee040e178597319f1fd0f3b63b922579c7df022882a703d696036764ae24e5 - Sigstore transparency entry: 1429502035
- Sigstore integration time:
-
Permalink:
yangyuan/aiomcp@c81114ef6d79c275c3e58492e4233b9ef05cd4d8 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/yangyuan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c81114ef6d79c275c3e58492e4233b9ef05cd4d8 -
Trigger Event:
workflow_dispatch
-
Statement type: