Simplified MCP client wrapper for efficient server interactions
Project description
plug_mcp: The Missing Connector for AI
plug_mcp is a Python library that provides a simple and efficient way to connect your applications to AI models using the Multi-purpose Cooperative Protocol (MCP). It acts as a wrapper around the mcp library, offering a streamlined client interface for seamless integration with various AI providers and transport protocols.
Table of Contents
✨ Features
- Simplified Client Interface: A high-level
MCPClientfor easy interaction with MCP servers. - Multi-provider Support: Out-of-the-box support for Anthropic and OpenAI models.
- Flexible Transports: Connect to servers using STDIO, SSE, or Streamable HTTP.
- Built-in Guardrails: Protect your application with content filtering, PII masking, and injection detection.
- Conversation Management: Easily manage conversation history, context, and persistence.
- Asynchronous by Design: Built with
asynciofor high-performance, non-blocking I/O. - Extensible: Easily add new LLM providers, transports, or guardrails.
🚀 Getting Started
Installation
pip install plug_mcp
Quick Start
Here's a simple example of how to use plug_mcp to connect to an MCP server and interact with an AI model:
import asyncio
from plug_mcp.client import MCPClient
async def main():
# Connect to a local server using STDIO
client = MCPClient(llm_provider="anthropic")
await client.connect("python examples/simple_server/main.py")
# Start a conversation
conversation_id = client.start_conversation()
print(f"Started conversation: {conversation_id}")
# Send a message and get a response
response = await client.query("Hello, world!")
print(f"AI: {response}")
# Disconnect from the server
await client.disconnect()
if __name__ == "__main__":
asyncio.run(main())
📚 Documentation
For full details on all features and the complete API reference, please visit our documentation site.
The documentation is automatically generated from the main branch and includes:
- A full Getting Started guide.
- In-depth tutorials and examples.
- The complete API Reference.
🗺️ Roadmap
- Add support for more LLM providers.
- Implement a more comprehensive test suite.
- Add more examples and tutorials.
- Improve documentation and type hinting.
🤝 Contributing
Contributions are welcome! If you'd like to contribute to plug_mcp, please follow these steps:
- Fork the repository.
- Create a new branch for your feature or bug fix.
- Make your changes and add tests.
- Ensure that the tests pass.
- Submit a pull request with a clear description of your changes.
📄 License
plug_mcp is licensed under the MIT License.
⚠️ Disclaimer
This project is under active development and may undergo significant changes.
Code of Conduct
We are committed to providing a welcoming and inclusive environment for everyone. Please read and follow our Code of Conduct.
🛡️ Security
If you discover a security vulnerability, please report it to us by emailing 2796gaurav@gmail.com. We will address all reports promptly.
🌟 Showcase
Have you built something cool with plug_mcp? Written an article or created a video? We'd love to see it! Please open a pull request to add your project to this list.
💬 Support
If you have questions or need help, please open an issue in the issue tracker.
🐍 Supported Python Versions
plug_mcp is tested and supported on the following Python versions:
- Python 3.8
- Python 3.9
- Python 3.10
- Python 3.11
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 plug_mcp-0.1.2.tar.gz.
File metadata
- Download URL: plug_mcp-0.1.2.tar.gz
- Upload date:
- Size: 33.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b3372b23ed87a35ca5341d8e2da3de1ce4def32b82a2445df2a43110de8ab77
|
|
| MD5 |
340f83d107832447fad5b1c36af45239
|
|
| BLAKE2b-256 |
6c4a7ac25418c151bad2220c542a9567017bb5e09f70d3f02fb6df71e75ab81a
|
File details
Details for the file plug_mcp-0.1.2-py3-none-any.whl.
File metadata
- Download URL: plug_mcp-0.1.2-py3-none-any.whl
- Upload date:
- Size: 17.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9632e4f37187ee29f0e75180561c31f4eebfb350dbe575d73592699198559af6
|
|
| MD5 |
4c66ef5fa51df46aaef13c57f76aa32f
|
|
| BLAKE2b-256 |
b1e2694a4274a3c9943fe97ab1806bbccd09a54be375c4359b35d53034066191
|