Spyglass AI MCP Server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Spyglass AI MCP ServerWhat are the slowest endpoints in the last hour?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Spyglass AI MCP Server
The Spyglass AI MCP server provides a simple interface for LLMs to query the Spyglass AI agent. The agent analyzes your telemetry data and provides intelligent insights about application performance, errors, and bottlenecks.
To install the MCP server for Cursor click the button below. It should open Cursor and prompt you to add your API Key.
Alternatively, add the following to your ~/.cursor/mcp.json file (create it if you need to) and substitute your Spyglass API Key. Then restart Cursor to apply the change.
{
"mcpServers": {
"spyglass-ai": {
"command": "uvx",
"args": ["spyglass-mcp"],
"env": {
"SPYGLASS_API_KEY": "your-key-here"
}
}
}
}Note that you need to have uv installed first, see the docs for that here
Available Tools
call_spyglass_agent
Calls the Spyglass AI agent with a natural language query about your telemetry data.
Parameters:
query(string, required): Natural language query about your application's telemetry data
Example queries:
"What are the slowest endpoints in the last hour?"
"Show me all errors in the checkout service"
"Which services have the highest error rate?"
"What's causing high latency in my API?"
"How many requests has my app had in the last day?"
Returns:
Natural language analysis of the telemetry data
Related MCP server: Datadog MCP Server
Configuration
Environment Variables
Variable | Required | Default | Description |
| Yes | N/A | API Key for authentication with Spyglass agent |
| No |
| Agent endpoint URL (useful for local testing) |
Command Line Arguments
Argument | Required | Default | Description |
| No |
| Spyglass agent endpoint URL |
| No |
| Transport type (stdio or http) |
| No |
| Port for HTTP transport |
Example: Using with an MCP Client
import asyncio
from fastmcp import Client
client = Client("http://localhost:8000/mcp")
async def analyze():
async with client:
result = await client.call_tool("call_spyglass_agent", {
"query": "What are the slowest endpoints?"
})
print(result)
asyncio.run(analyze())Logging
The MCP server logs to both stderr (captured by Cursor) and a file for debugging:
Log file location:
~/.spyglass/logs/mcp-server-YYYYMMDD.logView logs in real-time:
tail -f ~/.spyglass/logs/mcp-server-$(date +%Y%m%d).logThe logs include:
Server startup and configuration
Incoming queries and responses
API call details (with truncated tokens for security)
Error messages and stack traces
Development
Prerequisites
Python 3.11 or higher
uv package manager
Setup
Clone the repository and navigate to the project directory:
cd spyglass-mcpInstall dependencies:
uv syncThis will create a virtual environment and install all required dependencies.
Copy the example environment file and configure your API key:
cp env.example .env
# Edit .env and add your SPYGLASS_API_KEYRunning Locally
Run the MCP server in stdio mode (default):
uv run spyglass-mcpRun with a custom endpoint (useful for testing against a local agent):
uv run spyglass-mcp --endpoint http://localhost:8080Run in HTTP transport mode:
uv run spyglass-mcp --transport http --port 8000Running Tests
Run all tests:
uv run pytestRun tests with verbose output:
uv run pytest -vRun a specific test file:
uv run pytest tests/test_mcp_server.pyRun tests with coverage:
uv run pytest --cov=spyglass_mcp --cov-report=term-missingBuilding
Build the package for distribution:
uv buildThis will create wheel and source distribution files in the dist/ directory.
Project Structure
spyglass-mcp/
├── .github/
│ └── workflows/
│ └── publish.yaml
├── src/
│ └── spyglass_mcp/
│ ├── __init__.py
│ └── main.py
├── tests/
│ ├── __init__.py
│ ├── conftest.py
│ └── test_mcp_server.py
├── CHANGELOG.md
├── env.example
├── LICENSE
├── pyproject.toml
├── README.md
└── uv.lockAvailable Tools
1 toolcall_spyglass_agentA
Call the Spyglass AI agent with a natural language query about your telemetry data.
Args: query: Natural language query about telemetry data (e.g., "What are the slowest endpoints?")
Returns: Analysis result from the Spyglass AI agent
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It only mentions returning an analysis result but lacks details on side effects, authentication, rate limits, or whether the call is synchronous. This is insufficient for an agent invocation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise with a brief sentence followed by structured Args and Returns sections. No waste, but could be slightly more structured (e.g., bullet points).
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers purpose and parameter semantics adequately, but lacks details on return format, output schema, and behavioral characteristics. Given the tool is an agent call, more context (e.g., response format, latency) would be beneficial.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, but the description adds meaning by describing the query parameter as 'natural language query about telemetry data' and provides an example. This compensates well for the schema's lack of description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the tool calls the Spyglass AI agent with a natural language query about telemetry data. Verb and resource are specific, and the purpose is unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives an example query but does not explicitly state when to use this tool vs. alternatives or provide conditions for use. With no sibling tools, it is adequate but not explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
1 tool update
v0.1.0- First observed
call_spyglass_agent
TDQS
Only one tool exists, so there is no possibility of ambiguity between tools.
The single tool name 'call_spyglass_agent' follows a clear verb_noun pattern, which is consistent and descriptive.
A single tool for telemetry data analysis feels thin; typical telemetry servers offer multiple operations (e.g., list, get, query).
The tool only allows querying via an AI agent, with no tools for data exploration, configuration, or management, leaving significant gaps in the expected functionality.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Open-source agent that observes and fixes your application. Query logs, traces, metrics, incidents.
Query application logs, traces, and metrics from your AI coding assistant via Foam's MCP server.
MCP observability. Query live traffic, errors, duration, and alerts from your AI agent.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to query and manage Datadog observability data including metrics, logs, traces, and monitors through natural language. Supports read-only operations by default for security.MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to interact with Datadog's observability platform via natural language, covering metrics, logs, APM, monitors, dashboards, incidents, and infrastructure.1,1061MIT
- AlicenseNot gradedqualityDmaintenanceEnables natural language querying and analysis of OpenTelemetry traces, metrics, and logs stored in Elasticsearch/OpenSearch, allowing AI assistants to investigate performance issues, find root causes, and explore system behavior.1614MIT
- AlicenseAqualityBmaintenanceEnables AI assistants to access full Datadog observability, including log search, APM trace filtering, smart sampling, and cross-correlation between logs, traces, and metrics.231,1065Apache 2.0
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Spyglass-AI/spyglass-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server