Pingera Mcp

Created By
pingera10 months ago
An MCP server for Pingera monitoring platform. Geo-distributed monitoring, playwright scripts execution, status pages.
Overview

Pingera MCP Server Overview

What is it?

The Pingera MCP Server is a Model Context Protocol (MCP) server that connects AI models (like Claude) directly to the Pingera monitoring service. It allows AI assistants to read and manage your monitoring infrastructure through natural language conversations.

Key Features

  • Direct API Integration: Real-time access to your Pingera monitoring data
  • AI-Friendly Interface: Works seamlessly with Claude Desktop and other MCP-compatible AI tools
  • Two Operation Modes:
    • Read-only: View monitoring data safely
    • Read-write: Full management capabilities
  • Comprehensive Coverage: Status pages, monitoring checks, incidents, alerts, heartbeats, and more

When to Use It

Perfect for:

  • DevOps Teams: "Show me all failed checks from last week"
  • Site Reliability Engineers: "Create an incident for the API outage"
  • Monitoring Management: "List all my status pages and their components"
  • Incident Response: "What's the current status of our payment service?"
  • Automated Reporting: "Generate a summary of this month's uptime"

Use Cases:

  • Query monitoring data through natural language
  • Manage status pages and incidents via AI conversations
  • Automate monitoring setup and configuration
  • Generate monitoring reports and insights
  • Troubleshoot service issues with AI assistance

Quick Start

  1. Install: uv tool install pingera-mcp-server
  2. Configure: Add your Pingera API key to Claude Desktop config
  3. Use: Ask Claude about your monitoring data!

Example queries:

  • "List my monitored services"
  • "Show details for the main website status page"
  • "Create a new incident for database maintenance"
  • "What checks are currently failing?"

Safety

  • Starts in read-only mode by default
  • Requires explicit configuration for write operations
  • Comprehensive error handling and validation
  • Secure API key management through environment variables

Transform your monitoring workflow with AI-powered infrastructure management!

Server Config

{
  "mcpServers": {
    "pingera": {
      "command": "uv",
      "args": [
        "run",
        "--with",
        "pingera-mcp-server",
        "--python",
        "3.10",
        "python",
        "-m",
        "pingera_mcp"
      ],
      "env": {
        "PINGERA_API_KEY": "your_api_key_here",
        "PINGERA_MODE": "read_only",
        "PINGERA_BASE_URL": "https://api.pingera.ru/v1",
        "PINGERA_TIMEOUT": "30",
        "PINGERA_MAX_RETRIES": "3",
        "PINGERA_DEBUG": "false",
        "PINGERA_SERVER_NAME": "Pingera MCP Server"
      }
    }
  }
}
Project Info
Created At
10 months ago
Updated At
10 months ago
Author Name
pingera
Star
-
Language
-
License
-
Category

Recommend Servers

View All
Mnemom

14 hours ago
//beforeyouship — LLM Cost Modeling From Your Editor
@Indiegoing

Query realistic LLM cost models without leaving your editor. beforeyouship models the **true monthly cost** of an LLM app architecture — retries, prompt caching, batch discounts, infra overhead, and 3×/10× growth — across GPT-5.x, Claude, Gemini, DeepSeek, and more. Not a token calculator: a planning tool for the design phase, before you commit to a stack. **No API key needed to try it** — demo mode covers the six free-tier models. A Pro key from [beforeyouship.dev](https://beforeyouship.dev) unlocks the full 18-model catalog. ## What you can ask - "How much will a RAG chatbot cost at 10,000 requests/day?" - "Compare Claude Haiku vs Gemini Flash pricing for my workload" - "What's the cheapest model for a multi-step agent at scale?" - "Show me current per-token prices for Anthropic models" ## Tools ### `estimate_cost` Full cost model for an architecture at a given usage level. Returns Naive / Realistic / Worst Case monthly cost per model, 3×/10× growth scenarios, and an opinionated recommendation with reasoning. ### `get_model_prices` Current per-1M-token pricing — input, output, cached input, batch — with context windows and staleness metadata. ### `list_archetypes` Seven preset architecture patterns (simple chatbot, chatbot with history, RAG pipeline, multi-model router, coding assistant, document processor, multi-step agent) used as starting points for estimates. ## Setup **Claude Code:** ​```bash claude mcp add --transport http beforeyouship https://beforeyouship.dev/api/mcp ​``` **Cursor / other clients** — add a remote server: ​```json { "mcpServers": { "beforeyouship": { "type": "streamable-http", "url": "https://beforeyouship.dev/api/mcp" } } } ​``` Add an `Authorization: Bearer bys_...` header with a Pro key for the full catalog. ## Try it > Estimate the monthly cost of a RAG pipeline at 10,000 requests/day

13 hours ago
Docwand

13 hours ago