Analytics SDK for Model Context Protocol Servers
Project description
Agnost Analytics SDK
Analytics SDK for tracking and analyzing Model Context Protocol (MCP) server interactions. Get insights into how your MCP servers are being used, monitor performance, and optimize user experiences.
Installation
pip install agnost
Basic Usage
import agnost
from fastmcp import FastMCP
# Create FastMCP server
mcp = FastMCP("My Server")
@mcp.tool()
def calculate(operation: str, a: float, b: float) -> float:
"""Perform mathematical operations."""
if operation == "add":
return a + b
elif operation == "multiply":
return a * b
return 0
# Enable analytics tracking
agnost.track(mcp, org_id="your-organization-id")
Configuration
You can customize the SDK behavior using the configuration object:
import agnost
# Create a custom configuration
config = agnost.config(
endpoint="https://api.agnost.ai/api/v1",
disable_input=False, # Set to True to disable input tracking
disable_output=False # Set to True to disable output tracking
)
# Apply the configuration
agnost.track(
server=server,
org_id="your-organization-id",
config=config
)
Configuration Options
| Option | Type | Default | Description |
|---|---|---|---|
endpoint |
str |
"https://api.agnost.ai/api/v1" |
API endpoint URL |
disable_input |
bool |
False |
Disable tracking of input arguments |
disable_output |
bool |
False |
Disable tracking of output results |
Contact
For support or questions, contact the founders: founders@agnost.ai
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 agnost-0.1.7.tar.gz.
File metadata
- Download URL: agnost-0.1.7.tar.gz
- Upload date:
- Size: 10.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65bad8de37bd5f73dca8c75d54ba6b59c8ea78dbbf279c15648343a746832159
|
|
| MD5 |
7e1c3e19de02e0930ae6f4debc26d378
|
|
| BLAKE2b-256 |
d5effe3e31325b3dd506cf9d8584bbdfe21bc4c9565d9167bafd5696d09fe904
|
File details
Details for the file agnost-0.1.7-py3-none-any.whl.
File metadata
- Download URL: agnost-0.1.7-py3-none-any.whl
- Upload date:
- Size: 12.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
653aabc13158a77c03f375e57c619172742e6a8305495f48fa8c8b44ee429077
|
|
| MD5 |
0d82d58ab6a93c0c32803b642cc2ec15
|
|
| BLAKE2b-256 |
d1f8e05239ddde05fd6bd33a8ee0860906cd1dda7ae79bf0c1c140608395608c
|