trackmcp
Back to directory
mxiamxia

appsignals-mcp

View on GitHub

AWS Application Signals

0 stars PythonOthers Updated Apr 26, 2026

Documentation

MCP Server for AWS Application Signals

An MCP (Model Context Protocol) server that provides tools for monitoring, analyzing, and troubleshooting AWS Application Signals services.

This server enables AI assistants to interact with AWS Application Signals to track service health, monitor SLOs (Service Level Objectives), analyze metrics, and investigate issues using distributed tracing.

Available Tools

This server provides the following tools to interact with AWS Application Signals:

  • `list_monitored_services` - Lists all services monitored by AWS Application Signals
  • `get_service_detail` - Gets the details healthy data for a specific service
  • `get_service_metrics` - Queries CloudWatch metrics for the monitored services
  • `list_slis` - Monitors SLI (Service Level Indicator) status and SLO compliance across all services
  • `get_slo` - Retrieves detailed configuration for a specific SLO
  • `query_sampled_traces` - Queries AWS X-Ray traces for distributed tracing analysis
  • `search_transaction_spans` - Queries AWS X-Ray traces data

Quick Setup

Prerequisites

  • AWS credentials configured (via `aws configure` or environment variables)
  • Claude Desktop app installed
  • `uv` package manager installed (installation guide)
    • Note: `uvx` is included with `uv` installation

Installation

You can install this MCP server in Claude Desktop using either method:

Add this configuration to your Claude Desktop settings:

json
{
  "mcpServers": {
    "appsignals": {
      "command": "uvx",
      "args": [
        "--from",
        "git+https://github.com/mxiamxia/appsignals-mcp.git",
        "mcp-server-appsignals"
      ]
    }
  }
}

Method 2: Local Installation

1. Clone this repository

2. Install dependencies (if needed):

bash
uv pip install -e .

3. Add to Claude Desktop configuration:

json
{
     "mcpServers": {
       "appsignals": {
         "command": "uv",
         "args": [
           "--directory",
           "/path/to/appsignals-mcp",
           "run",
           "mcp-server-appsignals"
         ]
       }
     }
   }

Amazon Q Integration

Amazon Q integration is similiar to Claude Desktop setup. First to install

Amazon Q Developer

and you will just add the following to your `~/.aws/amazonq/mcp.json` file:

code
{
    "mcpServers": {
        "appsignals": {
            "command": "uvx",
            "args": [
                "--from",
                "git+https://github.com/mxiamxia/appsignals-mcp.git",
                "mcp-server-appsignals"
            ],
            "env": {
                "AWS_ACCESS_KEY_ID": "",
                "AWS_SECRET_ACCESS_KEY": ""
            },
            "timeout": 60000
        }
    }
}

Development

bash
uv pip install -e .

Frequently asked questions

What is appsignals-mcp?

appsignals-mcp is AWS Application Signals

How do I install appsignals-mcp?

Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

Is appsignals-mcp open source?

Yes — it is hosted on GitHub at https://github.com/mxiamxia/appsignals-mcp.

Related MCP tools

Run your own MCP server? See who uses it and what to fix.

Measure it with TrackMCP