Open, vendor-agnostic observability SDK for Model Context Protocol (MCP) applications
Project description
MCP Observability SDK for Python
Open, vendor-agnostic observability SDK for Model Context Protocol (MCP) applications. No vendor lock-in, plug-and-play integration, and extensible for rate limiting, tool filtering, auth, and traceability.
Installation
pip install mcp-hack
Quick Start
1. Get an API Key
- Visit https://etalesystems.com
- Sign in with your Google account
- Create a new API key from the dashboard
- Set your API key as an environment variable:
export MCP_API_KEY="your_api_key_here"
2. Use in Your Code
import os
from mcp_observability import MCPObservability
# Initialize observability
obs = MCPObservability(
api_url="https://etalesystems.com/api", # Production backend URL
api_key=os.getenv('MCP_API_KEY') # Your API key from etalesystems.com
)
# Add observability to your MCP tools
@mcp.tool()
@obs.tool_observer("add_numbers")
def add(a: int, b: int) -> int:
"""Add two numbers"""
return a + b
# Get metrics
metrics = obs.get_metrics()
print(f"Total calls: {metrics['summary']['total_calls']}")
Features
- 🔍 Automatic Tool Tracing: Monitor all MCP tool calls with zero configuration
- 📊 Rich Metrics: Execution time, success rates, error tracking
- 🚀 Non-blocking: Async trace submission doesn't slow down your tools
- 🔒 Secure: API key authentication with environment variable support
- 📈 Dashboard Integration: Real-time visualization of your MCP tools
API Reference
MCPObservability
Main class for MCP observability.
Constructor
MCPObservability(api_url: str, api_key: Optional[str] = None)
api_url: URL of your observability backendapi_key: API key for authentication (optional, but required for trace submission)
Methods
tool_observer(tool_name: Optional[str] = None)
Decorator to add observability to MCP tools.
@obs.tool_observer("my_tool")
def my_tool(param: str) -> str:
return f"Hello {param}"
trace(task: str, context: Dict[str, Any], model_output: str, metadata: Optional[Dict[str, Any]] = None)
Send a custom trace to the backend.
obs.trace(
task="Custom Task",
context={"user_input": "Hello"},
model_output="Response",
metadata={"custom_field": "value"}
)
get_metrics() -> Dict[str, Any]
Get current metrics snapshot.
metrics = obs.get_metrics()
print(metrics['summary']['total_calls'])
print_metrics()
Print formatted metrics to console.
obs.print_metrics()
Environment Variables
MCP_API_KEY: Your API key from https://etalesystems.comBACKEND_URL: URL of your observability backend (default: https://etalesystems.com/api)
License
MIT License. See LICENSE file for details.
Contributing
Contributions are welcome! Please see our Contributing Guide.
Links
- Documentation
- GitHub Repository
- Issue Tracker
- Dashboard - Generate API keys and view traces
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 mcp_observability-0.1.2.tar.gz.
File metadata
- Download URL: mcp_observability-0.1.2.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
330dfeaa6b51dca76d3bd1e047160b5bbf331c031b3ccb66253bb176728a9bc4
|
|
| MD5 |
b821344974d48e1b9855c85a58fb02f8
|
|
| BLAKE2b-256 |
6d283acc64d20bf95d2b028539a5599f6dd3a2cfc7cb0b0837039834b97151c5
|
File details
Details for the file mcp_observability-0.1.2-py3-none-any.whl.
File metadata
- Download URL: mcp_observability-0.1.2-py3-none-any.whl
- Upload date:
- Size: 5.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff9107775d3177843268ab7daf51609886e282d0a41a2b3d5567283ba1ac988f
|
|
| MD5 |
7b26bb36c0ee1fca89645e63864ec311
|
|
| BLAKE2b-256 |
44cfa494ae405d1627bdd5d9a18c8ca5d74921f2c5c3c4f3197dee59628ecf6b
|