An adapter library for Model Context Protocol (MCP) SSE servers to connect as stdio
Project description
AnyMCP
An adapter library for Model Context Protocol (MCP) SSE servers to connect as stdio.
Overview
AnyMCP provides a bridge between SSE-based (Server-Sent Events) MCP servers and standard input/output (stdio). It allows you to connect to remote model servers that implement MCP over SSE and interact with them using traditional stdio interfaces.
Features
- Connect to MCP servers via SSE endpoints
- Bridge SSE communication to standard input/output
- Maintain persistent connections with automatic reconnection
- Support for authentication via bearer tokens
- Comprehensive logging with adjustable verbosity
- Configurable timeouts and heartbeat intervals
This package is meant to be used with Arcee AnyMCP. Arcee AnyMCP makes it super easy to deploy your own MCP servers.
Installation
Using pip
pip install anymcp
From source
git clone https://github.com/arcee-ai/anymcp.git
cd anymcp
pip install -e .
Usage
Command Line Interface
Connect to an SSE-based MCP server:
anymcp connect http://localhost:8000/sse
With authentication:
anymcp connect http://localhost:8000/sse --token YOUR_AUTH_TOKEN
Add custom headers:
anymcp connect http://localhost:8000/sse --header "X-Custom-Header=Value"
Enable debug logging:
anymcp connect http://localhost:8000/sse --debug
Python API
Use AnyMCP in your Python applications:
import asyncio
from anymcp import connect_sse_as_stdio
async def main():
async with connect_sse_as_stdio(
sse_url="http://localhost:8000/sse",
token="YOUR_AUTH_TOKEN",
timeout=5.0,
sse_read_timeout=300.0
) as (reader, writer):
# Now your application can communicate with the MCP server
# through reader and writer streams
pass
if __name__ == "__main__":
asyncio.run(main())
Development
Setup
# Install in development mode
pip install -e ".[dev]"
Running Tests
make test
Code Quality
# Format code
make style
# Check code quality
make quality
Building
# Build package
make pip
# Upload to PyPI
make pip-upload
Docker
# Build Docker image
make docker-buildx
# Build and push Docker image
make docker-buildx-push
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Project details
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 anymcp-0.0.3.tar.gz.
File metadata
- Download URL: anymcp-0.0.3.tar.gz
- Upload date:
- Size: 11.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1eb05e319133e467af81f563790fd64f4b136465d2a38f834780433d16a715df
|
|
| MD5 |
40470b2c3fb70fb01bda51acc2df8933
|
|
| BLAKE2b-256 |
4e1ff6618b433e8774ee40868e82474f5d7aebaf89d8dd1318998451b3b98b74
|
File details
Details for the file anymcp-0.0.3-py3-none-any.whl.
File metadata
- Download URL: anymcp-0.0.3-py3-none-any.whl
- Upload date:
- Size: 12.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a5d628365666cf16f8ade26079388dcc74fb99d23980cf82db016b259ce0596
|
|
| MD5 |
ab1b0ed708f552aa16b1032164f505ba
|
|
| BLAKE2b-256 |
ec5a92aaf009029adb4bb8cfbcbd153ff01c1fce6eb039eedb272879a7abfe63
|