AgentOps MCP
An MCP server for AgentOps, providing observability and evaluation tools for AI agents.
AgentOps MCP Server
The AgentOps MCP server provides access to observability and tracing data for debugging complex AI agent runs. This adds crucial context about where the AI agent succeeds or fails.
Usage
MCP Client Configuration
Add the following to your MCP configuration file:
{
"mcpServers": {
"agentops-mcp": {
"command": "npx",
"args": ["agentops-mcp"],
"env": {
"AGENTOPS_API_KEY": ""
}
}
}
}
Installation
Installing via Cursor Deeplink
Installing via Smithery
To install agentops-mcp for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @AgentOps-AI/agentops-mcp --client claude
Local Development
To build the MCP server locally:
# Clone and setup
git clone https://github.com/AgentOps-AI/agentops-mcp.git
cd mcp
npm install
# Build the project
npm run build
# Run the server
npm pack
Available Tools
auth
Authorize using an AgentOps project API key and return JWT token.
Parameters:
api_key(string): Your AgentOps project API key
get_trace
Retrieve trace information by ID.
Parameters:
trace_id(string): The trace ID to retrieve
get_span
Get span information by ID.
Parameters:
span_id(string): The span ID to retrieve
get_complete_trace
Get comprehensive trace information including all spans and their metrics.
Parameters:
trace_id(string): The trace ID
Requirements
- Node.js >= 18.0.0
- AgentOps API key (passed as parameter to tools)
Related Servers
Phabricator
Interacting with Phabricator API
Wordware
Run your Wordware apps locally with an interactive setup.
MCP Agentic AI Crash Course with Python
A comprehensive crash course on the Model Context Protocol (MCP), covering everything from basic concepts to building production-ready MCP servers and clients in Python.
AgentExecMCP
A secure, Docker-based server providing core execution capabilities for AI agents.
MCP Server Automation CLI
A CLI tool to automate packaging MCP servers as Docker images and deploying them to AWS ECS.
MCP Remote
A remote proxy for MCP that enables local clients to connect to remote servers via OAuth.
ComfyUI MCP Server
An image generation server that connects to a local ComfyUI instance via its API, supporting dynamic workflows.
Laburen MCP Server
A template for deploying a remote, authentication-free MCP server on Cloudflare Workers.
Enkrypt AI
Integrate red-teaming, prompt auditing, and AI safety analysis into any MCP-compatible client.
AiCore Project
A unified framework for integrating various language models and embedding providers to generate text completions and embeddings.