Tideways MCP Server
Provides tools for querying Tideways performance monitoring data for PHP applications, enabling AI assistants to analyze metrics, traces, and errors to identify performance bottlenecks and suggest optimizations.
Tideways MCP Server
A Model Context Protocol (MCP) server that enables AI assistants to query Tideways performance monitoring data and provide conversational performance insights for PHP applications.
About Tideways: Tideways is a powerful application performance monitoring (APM) platform designed specifically for PHP applications. For technical details, see the REST API documentation.
Forked from abuhamza/tideways-mcp-server by Mouhammed Diop.
Features
Conversational Performance Insights: Get performance data in natural language format optimized for AI assistants
AI Assistant Integration: Works with Claude Desktop, Cursor, Claude Code, and other MCP-compatible tools
Real-time Performance Metrics: Query current performance data with configurable rate limiting
Trace Analysis: List and filter traces with layer breakdown, bottleneck detection, and response time analysis
Issue Analysis: Retrieve and analyze errors, exceptions, and performance issues
Robust Error Handling: Comprehensive error handling with user-friendly messages
Repository: 5hahiL/tideways-mcp-server License: MIT
Related MCP server: Datadog MCP Server
Prerequisites
Tideways account with a valid API token
API token with appropriate scopes (
metrics,issues,traces) - see API documentationAccess to a Tideways organization and project
AI Integration Setup
This is an MCP (Model Context Protocol) server designed exclusively for AI assistants. It cannot be used as a standalone CLI tool.
The server integrates with AI assistants through MCP configuration using the npm package tideways-mcp.
Environment Variables
Variable | Required | Default | Description |
| ✅ | - | Tideways API access token (see Security section) |
| ✅ | - | Tideways organization name |
| ✅ | - | Tideways project name |
| ❌ |
| Tideways API base URL |
| ❌ |
| API requests per hour — match to your plan (Team/Pro: 2500, Standard: 1000, Basic: 250) |
| ❌ |
| Maximum API retry attempts |
| ❌ |
| API request timeout (ms) |
| ❌ |
| Log level (debug, info, warn, error) |
AI Assistant Integration
This server only works with MCP-compatible AI assistants. It uses stdio transport.
Claude Desktop
Add to your Claude Desktop MCP configuration file:
Location:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonLinux:
~/.config/claude/claude_desktop_config.json
Configuration (Recommended - using npx):
{
"mcpServers": {
"tideways": {
"command": "npx",
"args": ["tideways-mcp"],
"env": {
"TIDEWAYS_TOKEN": "your_token",
"TIDEWAYS_ORG": "your_org",
"TIDEWAYS_PROJECT": "your_project"
}
}
}
}Alternative (if installed globally):
{
"mcpServers": {
"tideways": {
"command": "tideways-mcp",
"env": {
"TIDEWAYS_TOKEN": "your_token",
"TIDEWAYS_ORG": "your_org",
"TIDEWAYS_PROJECT": "your_project"
}
}
}
}Cursor IDE
Cursor supports MCP through its settings. Add the server configuration in Cursor's MCP settings:
Open Cursor Settings
Tools & Integration
Add a new server with:
{
"mcpServers": {
"tideways": {
"command": "tideways-mcp",
"env": {
"TIDEWAYS_TOKEN": "your_token",
"TIDEWAYS_ORG": "your_org",
"TIDEWAYS_PROJECT": "your_project"
}
}
}
}VS Code with MCP Extension
If using VS Code with an MCP-compatible extension:
{
"mcp.servers": {
"tideways": {
"command": "npx",
"args": ["tideways-mcp"],
"env": {
"TIDEWAYS_TOKEN": "your_token",
"TIDEWAYS_ORG": "your_org",
"TIDEWAYS_PROJECT": "your_project"
}
}
}
}Using with AI Assistants
Once configured, you can ask your AI assistant questions like:
Basic Performance Queries
"What's the current performance of my application?"
"Show me recent errors in the last 24 hours"
"How is my API performing compared to yesterday?"
"What are the slowest transactions right now?"
Advanced Trace Analysis & Optimization
"Analyze the
/api/users/{id}endpoint and identify bottlenecks""Find the root cause of slow performance in my checkout process"
"Detect N+1 queries in my product listing endpoint and suggest fixes"
"Analyze traces for
/dashboardand recommend code optimizations""Identify database query bottlenecks in my user authentication flow"
"Find memory leaks or inefficient code paths in my API endpoints"
"Analyze dependency injection overhead in my application"
"Detect redundant database calls and suggest caching strategies"
Performance Optimization Suggestions
"Recommend performance improvements for my slowest endpoints"
"Analyze my SQL queries and suggest indexing strategies"
"Identify opportunities for query batching or lazy loading"
"Find inefficient loops or recursive calls in my traces"
"Suggest code refactoring based on performance bottlenecks"
"Analyze memory usage patterns and recommend optimizations"
Available MCP Tools
All tools return raw JSON from the Tideways API. The AI assistant (Claude, Cursor, etc.) performs the actual analysis and interpretation of this data.
get_performance_metrics
Retrieve aggregate performance metrics and system-wide statistics.
Parameters:
ts(optional): End timestamp in Y-m-d H:i format (e.g., "2025-08-12 18:30")m(optional): Number of minutes backward from timestamp (e.g., 60 for 1 hour, 1440 for 24 hours)env(optional): Filter by specific environments(optional): Filter by specific service name
Conversational Examples:
"What's the current performance of my application?"
"Show me performance metrics for the last 6 hours"
"Get metrics for the API service in production"
"How is my web service performing in the staging environment?"
"Compare today's metrics with the last 24 hours"Returns: Raw performance data from Tideways including response times, throughput, error rates, and transaction breakdowns.
get_performance_summary
Retrieve time-series performance summary data in 15-minute intervals for trend analysis.
Parameters:
s(optional): Service name to filter by (e.g., "web", "api", "worker"). Default: "web"
Conversational Examples:
"Show me performance trends over the last few hours"
"Get the performance summary for my API service"
"How has my web service been performing recently?"
"Display trends for the worker service"
"Show me response time patterns for today"Returns: Raw time-series data with 15-minute intervals showing response times, request counts, and error rates.
get_issues
Retrieve and analyze recent errors, exceptions, and performance issues.
Parameters:
issue_type(optional): "error", "slowsql", "deprecated", "all" (default: "all")status(optional): "open", "new", "resolved", "not_error", "ignored", "all" (default: "open")page(optional): Page number for pagination (default: 1)
Conversational Examples:
"What errors are currently happening in my application?"
"Show me all open errors from the last 24 hours"
"Get slow SQL queries that need attention"
"Are there any new performance issues I should know about?"
"List all deprecated function calls in my code"
"Show me resolved errors to understand what was fixed"Returns: Raw issue data from Tideways including error types, occurrence counts, affected endpoints, and stack traces where available.
get_traces
Analyze individual trace samples for detailed bottleneck identification and performance debugging.
Parameters:
env(optional): Environment name (e.g., "production", "staging")s(optional): Service name (e.g., "web", "api", "worker")transaction_name(optional): Filter by specific transaction/endpoint namehas_callgraph(optional): Only return traces with detailed callgraph datasearch(optional): Word-based search on transaction_name, host, and URLmin_date(optional): Minimal date in YYYY-MM-DD HH:MM format (requires max_date)max_date(optional): Maximal date in YYYY-MM-DD HH:MM format (requires min_date)min_response_time_ms(optional): Minimum response time filtermax_response_time_ms(optional): Maximum response time filtersort_by(optional): "response_time", "date", "memory" (default: "response_time")sort_order(optional): "ASC", "DESC" (default: "DESC")
Conversational Examples:
"Analyze traces for the /api/products endpoint and find bottlenecks"
"Show me the slowest requests from the last hour with details"
"Find traces with callgraph data for the checkout process"
"What's causing slow response times in my user registration flow?"
"Detect N+1 query problems in my product listing page"
"Analyze memory usage patterns in my API endpoints"
"Find database bottlenecks in the /dashboard endpoint"
"Show me traces where response time is over 2 seconds"Returns: Raw trace data from Tideways including per-request timing, layer breakdown (SQL, Redis, HTTP, etc.), bottleneck flags, and callgraph data when has_callgraph: true is set. Use has_callgraph: true for the deepest debugging detail.
get_historical_data
Retrieve historical performance data for specific dates with configurable granularity.
Parameters:
date(required): Date in YYYY-MM-DD formatgranularity(optional): "day", "week", "month" (default: "day")
Conversational Examples:
"Get historical performance data for August 1st, 2025"
"Show me weekly performance trends for last Monday"
"Compare this month's performance with last month"
"How did my application perform on 2025-07-15?"
"Get daily performance data for the past week"
"Show me monthly trends for the last quarter"Returns: Raw historical performance data from Tideways for the specified date and granularity.
Development
Project Structure
├── src/
│ ├── config/ # Configuration management
│ ├── lib/ # Core libraries
│ │ ├── errors.ts # Error handling utilities
│ │ ├── logger.ts # Structured logging
│ │ └── tideways-client.ts # Tideways API client
│ ├── tools/ # MCP tool implementations
│ │ ├── definitions.ts # Tool schema definitions
│ │ ├── registry.ts # Tool execution registry
│ │ └── handlers/ # Individual tool handlers
│ ├── types/ # TypeScript type definitions
│ ├── utils/ # Utility functions
│ ├── server.ts # Main MCP server implementation
│ └── index.ts # Application entry point
├── tests/ # Test suites
└── dist/ # Compiled JavaScript (generated)Running Tests
# Run all tests
npm test
# Run tests with coverage
npm run test:coverage
# Run tests in watch mode
npm run test:watch
# Run type checking
npm run typecheckBuilding
# Build TypeScript to JavaScript
npm run build
# Clean build artifacts
npm run cleanCode Quality
# Run linter
npm run lint
# Fix linting issues
npm run lint:fix
# Format code
npm run formatArchitecture
Core Components
MCP Server (
src/server.ts): Main server implementing MCP protocol, handles tool definitions and routingTideways API Client (
src/lib/tideways-client.ts): HTTP client with rate limiting, retry logic, and security measuresTool Registry (
src/tools/): Modular tool system with individual handlers for each MCP toolError Handler (
src/lib/errors.ts): Centralized error handling with user-friendly messagesLogger (
src/lib/logger.ts): Structured JSON logging for monitoring and debuggingConfiguration (
src/config/index.ts): Environment-based configuration management
Data Flow
AI Assistant ←→ MCP Protocol (stdio) ←→ TidewaysMCPServer → TidewaysClient → Tideways API
↓
Raw JSON Response → AI AssistantResponse Format Philosophy
This server uses a raw JSON approach for optimal performance:
Direct API-to-LLM Pipeline: Tools return
JSON.stringify(apiData, null, 2)without formattingZero Processing Overhead: No complex formatting, caching, or interpretation logic
Complete Data Preservation: LLM receives all available data for flexible analysis
Minimal Maintenance: No formatter or caching logic to maintain or debug
Rate Limiting Strategy
Configurable Rate Limiter: Set
TIDEWAYS_RATE_LIMITto match your Tideways plan (default: 2500/hr)Direct API Calls: All requests go directly to Tideways API without caching layer
Retry Logic: Automatic retries for transient failures with exponential backoff
🛡️ Security
API tokens stored securely in environment variables
Authorization headers automatically redacted in logs as
Bearer [REDACTED]Rate limiting to respect Tideways API constraints
Input validation on all MCP function parameters
No sensitive data logged or exposed in error messages
Automated security scanning: CodeQL, Snyk, TruffleHog, GitLeaks
📊 Monitoring
The server provides structured JSON logs for monitoring:
{
"timestamp": "2025-08-09T10:00:00.000Z",
"level": "info",
"message": "Tool called",
"context": {
"toolName": "get_performance_metrics",
"arguments": {"time_range": "24h"}
}
}🔧 Troubleshooting
Common Issues
Authentication Error
Error: Authentication failed. Please check your API token.Verify
TIDEWAYS_TOKENis correct and has required scopes (metrics,issues,traces)Check token hasn't expired
Ensure organization and project names are correct
Rate Limit Exceeded
Error: Rate limit exceeded. Please try again later.Set
TIDEWAYS_RATE_LIMITto match your actual plan limitWait for rate limit reset (shown in error message)
Built-in rate limiting respects your configured limit
Connection Issues
Error: Network error: Unable to connect to Tideways API.Check internet connection
Verify Tideways API is accessible from your network
Check if corporate firewall blocks API access to
app.tideways.ioTest with curl:
curl -H "Authorization: Bearer YOUR_TOKEN" https://app.tideways.io/apps/api/_token
MCP Integration Issues
Error: MCP server not responding or connection failedRestart your AI assistant (Claude Desktop, Cursor, etc.)
Verify MCP configuration file syntax is correct
Check that the server command path is correct
Ensure environment variables are properly set in MCP config
Try running the server manually first:
npx tideways-mcp
Debug Mode
Enable debug logging for detailed troubleshooting:
# When running directly
LOG_LEVEL=debug npx tideways-mcp
# In MCP configuration, add to env:
{
"env": {
"LOG_LEVEL": "debug",
"TIDEWAYS_TOKEN": "your_token",
...
}
}Getting Help
Check the logs: Debug mode provides detailed information about requests and responses
Verify configuration: Double-check all environment variables and MCP settings
Test API access: Use curl to verify your Tideways API credentials work
Report issues: GitHub Issues with debug logs and configuration details
Contributing
Contributions welcome!
Create a feature branch:
git checkout -b your-featureMake changes and add tests:
npm testSubmit a pull request
License
This project is licensed under the MIT License - see the LICENSE file for details.
Available Tools
5 toolsget_historical_dataA
Retrieve historical performance data in JSON format for a specific date with configurable granularity. Analyze daily, weekly, or monthly performance trends, transaction reports, and time-series metrics.
| Name | Required | Description | Default |
|---|---|---|---|
| date | Yes | Date in YYYY-MM-DD format for the historical data | |
| granularity | No | Granularity for data aggregation. Day shows hourly breakdown, week/month show daily breakdown. | day |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must convey behavioral traits. It specifies JSON format and granularity options but does not disclose read-only nature explicitly, auth requirements, or error handling. The verb 'Retrieve' hints at idempotency but lacks depth.
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?
Two sentences that are front-loaded: the first states core function, the second elaborates use cases. No superfluous text, every sentence is purposeful.
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?
Given 2 parameters and no output schema, the description covers the retrieval purpose but lacks detail on return structure (beyond JSON) and does not fully differentiate from sibling performance tools. Adequate but not complete.
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 100% with parameter descriptions. The description adds 'JSON format' and mentions 'trends, transaction reports, time-series metrics', but the schema already details granularity options. The added value is moderate.
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?
The description clearly states the tool retrieves historical performance data for a specific date with configurable granularity, using specific verbs like 'Retrieve' and 'Analyze'. It distinguishes from siblings like get_issues and get_performance_summary by focusing on historical data with granularity options.
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 implies usage for analyzing historical trends but does not explicitly state when to use this tool versus alternatives like get_performance_summary. No exclusions or when-not guidance is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_issuesA
Retrieve and analyze recent errors, exceptions, and performance issues in JSON format for actionable insights
| Name | Required | Description | Default |
|---|---|---|---|
| issue_type | No | Type of issues to retrieve (fixed enum values to match API) | all |
| status | No | Issue status filter (updated to match API statuses) | open |
| page | No | Page number for pagination (replaces limit) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It discloses the output format (JSON) and scope (errors, exceptions, performance issues) but lacks details on pagination behavior, rate limits, or side effects.
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?
Single, front-loaded sentence with no redundant words. Efficiently conveys purpose.
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?
Lacks output schema. Description covers basic purpose and JSON return but does not explain return structure, pagination details, or example usage. Adequate but not thorough.
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 100%; all parameters have descriptions. The description adds minimal extra meaning beyond 'issue types' and 'statuses' already covered. Baseline 3 is appropriate.
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?
The description clearly states the tool retrieves and analyzes errors, exceptions, and performance issues in JSON format. It uses specific verbs and resources, and distinguishes from sibling tools like get_performance_metrics and get_traces.
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?
No guidance on when to use this tool versus alternatives such as get_traces or get_performance_metrics. Does not specify prerequisites or context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_performance_metricsA
Retrieve aggregate performance metrics and system-wide statistics in JSON format. Use for monitoring overall application health, trends, and high-level performance overview (use get_traces for detailed individual request analysis).
| Name | Required | Description | Default |
|---|---|---|---|
| ts | No | End timestamp in Y-m-d H:i format (e.g., "2025-08-12 18:30"). Specifies the end time of the last minute to include in the query. | |
| m | No | Number of minutes backward from timestamp to retrieve data (e.g., 60 for 1 hour, 1440 for 24 hours). | |
| env | No | Filter by specific environment (production, staging, etc.) | |
| s | No | Filter by specific service name |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Without annotations, the description carries full burden. It states the output is in JSON format and describes the nature of the data (aggregate, system-wide). It implies a read operation, but could explicitly say 'read-only' and mention any limitations like time range.
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 two sentences, both front-loaded: first sentence states purpose, second provides usage guidance. No unnecessary words.
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?
With no output schema, the description should explain the return structure more. It only says 'in JSON format' and 'aggregate performance metrics', which is vague. For a complete understanding, the agent would benefit from knowing what specific metrics are included (e.g., latency, error rate).
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 100%, so baseline is 3. The description adds no extra meaning to the parameters beyond what is already in the input schema. It does not explain how 'ts', 'm', 'env', 's' relate to the aggregate metrics.
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?
The description clearly states the verb 'Retrieve' and the resource 'aggregate performance metrics and system-wide statistics'. It distinguishes the tool from its sibling 'get_traces' by mentioning it is for high-level overview.
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 explicitly says 'Use for monitoring overall application health, trends, and high-level performance overview' and provides an alternative: 'use get_traces for detailed individual request analysis'. This gives clear guidance on when to use this tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_performance_summaryB
Retrieve time-series performance summary data in 15-minute intervals in JSON format for trend analysis and historical comparison. Returns data aggregated in 15-minute time buckets showing requests, errors, and 95th percentile response times.
| Name | Required | Description | Default |
|---|---|---|---|
| s | No | Service name to filter by (e.g., "web", "api", "worker"). Default: "web" |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses format, interval, and data fields (requests, errors, 95th percentile RT), but critically omits how to specify the time range or what the default range is. This is a significant gap for a data retrieval tool.
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 two sentences long, front-loading the main action and output. While efficient, it could be slightly more compact without losing clarity.
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?
Given the tool's simplicity (1 optional param, no output schema), the description explains what is returned and the format. However, it fails to specify the time range of the data, leaving a gap in completeness.
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 description coverage is 100% for the single parameter 's'. The tool description does not add any additional meaning or context to the parameter, so the baseline score of 3 is appropriate.
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?
The description clearly specifies the verb 'Retrieve' and the resource 'time-series performance summary data', including format and interval. It distinguishes from siblings like 'get_performance_metrics' by emphasizing aggregated summary data, but does not explicitly differentiate from 'get_historical_data'.
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 states 'for trend analysis and historical comparison', implying usage context, but lacks explicit guidance on when not to use or alternatives. No exclusion criteria are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_tracesA
Analyze individual trace samples in JSON format for detailed bottleneck identification and performance debugging. Use for investigating specific slow requests, not system-wide statistics (use get_performance_metrics for aggregate data).
| Name | Required | Description | Default |
|---|---|---|---|
| env | No | Environment name (e.g., "production", "staging") | |
| s | No | Service name (e.g., "web", "api", "worker") | |
| transaction_name | No | Filter by specific transaction/endpoint name | |
| has_callgraph | No | Only return traces with detailed callgraph data | |
| search | No | Word-based search on transaction_name, host, and URL text tokens. This is no fulltext search. | |
| min_date | No | Minimal date for traces in YYYY-MM-DD HH:MM format (e.g., "2024-01-15 14:30"). Convert natural language like "1 hour ago" to this format. Requires max_date. | |
| max_date | No | Maximal date for traces in YYYY-MM-DD HH:MM format (e.g., "2024-01-15 16:30"). Convert natural language like "now" to this format. Requires min_date. | |
| min_response_time_ms | No | Minimum response time in milliseconds for filtering slow traces | |
| max_response_time_ms | No | Maximum response time in milliseconds for filtering traces | |
| sort_by | No | Field to sort traces by | response_time |
| sort_order | No | Sort order (DESC = slowest/newest first) | DESC |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It only mentions JSON output and purpose, but lacks details on returned volume, pagination, or potential side effects.
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?
Two concise sentences, front-loaded with purpose and usage, no superfluous text.
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?
Given 11 parameters, no output schema, and no annotations, description covers purpose and usage well but lacks behavioral details like pagination or return format. Schema descriptions fill parameter details, but completeness is moderate.
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 has 100% description coverage, so description adds minimal extra value beyond schema. Baseline 3 is appropriate.
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 analyzes individual traces for bottleneck identification, and explicitly differentiates from get_performance_metrics for aggregate data.
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?
Directly states when to use (specific slow requests) and when not (system-wide statistics), naming the sibling alternative.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Tools are mostly distinct, but get_performance_metrics and get_performance_summary both deal with performance data, requiring careful reading of descriptions to differentiate. get_historical_data also overlaps slightly with time-series data, but descriptions help clarify.
All tools follow a consistent 'get_<noun>' pattern in snake_case, making it predictable and easy for an agent to understand the action and resource.
5 tools is a well-scoped set for a performance monitoring server, covering the essential retrievals without unnecessary bloat.
Covers all typical retrieval needs for application performance: historical data, issues, aggregate metrics, time-series summary, and individual traces. Minor gap in missing alerting or write operations, but retrieval surface is solid.
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
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
The Polar Signals MCP server enables AI assistants to connect directly with performance profiling data, allowing users to analyze application performance through natural language queries. Key capabilities include querying CPU performance and memory usage, exploring profiling metadata like profile types and labels, and providing AI-driven code optimization suggestions directly within development environments like Claude Code or Cursor.
Query application logs, traces, and metrics from your AI coding assistant via Foam's MCP server.
The Mercado Pago MCP Server implements the Model Context Protocol to provide AI agents and LLMs with access to Mercado Pago's APIs and tools within compatible development environments. It acts as an intermediary that translates Mercado Pago resources into executable functions (tools) that AI applications can invoke to perform actions and automate flows. The server simplifies integration, enables using documentation to implement or improve code, and optimizes operations through natural language interactions without manual implementations.
Related MCP Servers
- AlicenseAqualityBmaintenanceA Model Context Protocol (MCP) server that provides access to your TeslaMate database, allowing AI assistants to query Tesla vehicle data and analytics.18134MIT
- FlicenseBqualityNot gradedmaintenanceA Model Context Protocol server that enables AI assistants to interact with Datadog's observability platform through natural language.72
- AlicenseBqualityFmaintenanceA Model Context Protocol server that enables AI assistants to query Prometheus metrics, discover available data, and analyze system performance through natural language interactions.585MIT
- AlicenseAqualityCmaintenanceA production-ready Model Context Protocol (MCP) server that bridges your Symfony/PHP project with LLMs such as Claude. It exposes tools that let the AI read your project's routes, services, Twig templates, and PHP source code.8MIT
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/5hahiL/tideways-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server