Monti APM MCP Server
Integrates Monti APM with the Model Context Protocol to provide AI assistants with access to Meteor application performance monitoring data. It enables users to monitor system metrics, analyze method execution traces, and track application errors through natural language.
README
SDUI MCP Monti APM Server
A Model Context Protocol (MCP) server that integrates with Monti APM to provide AI assistants with access to your Meteor application's performance monitoring data.
Overview
This MCP server exposes Monti APM data through the Model Context Protocol, allowing AI assistants like Claude Desktop to:
- Retrieve system metrics (RAM, CPU, network, disk usage)
- Query method execution traces for performance analysis
- Access application errors and exceptions
- Execute custom GraphQL queries against the Monti APM API
- Get application information and configuration
Features
- š Secure Authentication: JWT-based authentication with Monti APM API
- š System Metrics: Real-time performance monitoring data
- š Method Tracing: Detailed execution traces for performance debugging
- šØ Error Monitoring: Application errors and exceptions tracking
- š ļø Custom Queries: Execute custom GraphQL queries against Monti APM
- š Comprehensive Logging: Structured logging with Winston
- š Resource Caching: Efficient data retrieval with smart caching
Prerequisites
- Node.js 18+
- Existing Meteor application with Monti APM monitoring configured
- Monti APM App ID and App Secret credentials
Installation
1. Clone and Install Dependencies
git clone <repository-url>
cd sdui-mcp-monti-apm
npm install
2. Environment Configuration
Copy the example environment file and configure your credentials:
cp .env.example .env
Edit .env with your Monti APM credentials:
# Monti APM Configuration
MONTI_APP_ID=your_app_id_here
MONTI_APP_SECRET=your_app_secret_here
MONTI_API_URL=https://api.montiapm.com/core
MONTI_AUTH_URL=https://api.montiapm.com/auth
# Server Configuration
PORT=4002
NODE_ENV=development
# Logging
LOG_LEVEL=info
LOG_FILE=./logs/mcp-monti.log
3. Build the Project
npm run build
4. Test the Server
npm start
Usage
With Claude Desktop
Add the server to your Claude Desktop configuration file (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"monti-apm": {
"command": "node",
"args": ["/path/to/sdui-mcp-monti-apm/dist/index.js"],
"env": {
"MONTI_APP_ID": "your_app_id",
"MONTI_APP_SECRET": "your_app_secret"
}
}
}
}
Available Tools
1. Get System Metrics
getSystemMetrics(metric: 'RAM_USAGE' | 'CPU_USAGE' | 'NETWORK_IN' | 'NETWORK_OUT' | 'DISK_USAGE')
Retrieve system performance metrics with optional filtering by host and time range.
2. Get Method Traces
getMethodTraces(options?: { minDuration, maxDuration, host, userId, limit, since, until })
Analyze method execution traces to identify performance bottlenecks.
3. Get Application Errors
getErrors(options?: { limit, since, until, host, resolved })
Retrieve application errors and exceptions for debugging.
4. Run Custom Query
runMontiQuery(query: string, variables?: object)
Execute custom GraphQL queries against the Monti APM API.
5. Get App Info
getAppInfo()
Retrieve basic information about your monitored application.
6. Get Available Hosts
getAvailableHosts()
List all monitored hosts to identify development vs production deployments.
Host Filtering for Multi-Environment Monitoring
This MCP server supports filtering data by deployment host, perfect for separating development and production monitoring:
// List available hosts
getAvailableHosts()
// Returns: Development hosts (e.g., "MBPvonJMichael2.pioneers") and Production hosts
// Development environment monitoring
getSystemMetrics({host: "MBPvonJMichael2.pioneers", metric: "RAM_USAGE"})
getMethodTraces({host: "MBPvonJMichael2.pioneers", limit: 20})
getErrors({host: "MBPvonJMichael2.pioneers", limit: 10})
// Production environment monitoring
getSystemMetrics({host: "plaiground01-plAIground", metric: "RAM_USAGE"})
getMethodTraces({host: "plaiground01-plAIground", limit: 20})
getErrors({host: "plaiground01-plAIground", limit: 10})
// Compare CPU usage across environments
getSystemMetrics({host: "MBPvonJMichael2.pioneers", metric: "CPU_USAGE"}) // Dev
getSystemMetrics({host: "plaiground01-plAIground", metric: "CPU_USAGE"}) // Prod
Available Resources
monti://metric/{metric_type}- Access cached metric datamonti://trace/{trace_id}- Individual method trace detailsmonti://error/{error_id}- Specific error detailsmonti://app- Application information
Development
Scripts
# Development with hot reload
npm run dev
# Build for production
npm run build
# Start production server
npm start
# Lint code
npm run lint
# Format code
npm run format
Project Structure
src/
āāā lib/
ā āāā logger.ts # Winston logging configuration
ā āāā montiAuth.ts # JWT authentication with Monti APM
ā āāā montiClient.ts # GraphQL client for Monti API
āāā mcp/
ā āāā schema.ts # MCP tools and resources definitions
āāā server.ts # Main MCP server implementation
āāā index.ts # Application entry point
Security Considerations
- Environment Variables: Never commit
.envfiles containing credentials - Token Caching: JWT tokens are cached securely and refreshed automatically
- Error Handling: Sensitive information is not exposed in error messages
- Logging: Credentials are never logged in plain text
Configuration Options
| Variable | Description | Default |
|---|---|---|
MONTI_APP_ID |
Your Monti APM App ID | Required |
MONTI_APP_SECRET |
Your Monti APM App Secret | Required |
MONTI_API_URL |
Monti APM GraphQL API endpoint | https://api.montiapm.com/core |
MONTI_AUTH_URL |
Monti APM authentication endpoint | https://api.montiapm.com/auth |
PORT |
Server port (not used in MCP mode) | 4002 |
NODE_ENV |
Environment mode | development |
LOG_LEVEL |
Logging level | info |
LOG_FILE |
Log file path | ./logs/mcp-monti.log |
DEV_HOST_PATTERNS |
Development host patterns (comma-separated) | mbp,macbook,pioneers |
DEFAULT_HOST |
Default host filter for tools | None |
DEFAULT_ENV_MODE |
Default environment mode (dev, prod, all) |
all |
Troubleshooting
Authentication Issues
If you're getting authentication errors:
- Verify your
MONTI_APP_IDandMONTI_APP_SECRETare correct - Check that your Meteor app is properly configured with Monti APM
- Ensure the credentials have appropriate permissions
Connection Issues
For API connection problems:
- Check your internet connection and firewall settings
- Verify the API URLs are accessible
- Check the server logs for detailed error messages
MCP Integration Issues
If Claude Desktop isn't recognizing the server:
- Verify the configuration file syntax is correct
- Check that the path to the built server is correct
- Restart Claude Desktop after configuration changes
Contributing
- Fork the repository
- Create a feature branch
- Make your changes with appropriate tests
- Submit a pull request
License
MIT License - see LICENSE file for details.
Support
For issues specific to this MCP server, please open a GitHub issue.
For Monti APM support, visit https://docs.montiapm.com.
Related Projects
- Model Context Protocol - The protocol specification
- Monti APM - Application performance monitoring for Meteor
- MCP SDK - TypeScript SDK for MCP
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.