{"id":49281248,"url":"https://github.com/devhelmhq/mcp-server","last_synced_at":"2026-05-06T21:02:28.838Z","repository":{"id":350848963,"uuid":"1205786928","full_name":"devhelmhq/mcp-server","owner":"devhelmhq","description":"DevHelm MCP server for AI agents","archived":false,"fork":false,"pushed_at":"2026-04-20T12:59:59.000Z","size":227,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-20T15:03:48.359Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devhelmhq.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-09T09:22:11.000Z","updated_at":"2026-04-19T09:04:06.000Z","dependencies_parsed_at":null,"dependency_job_id":"4cd4aa12-ee07-4f74-a425-2e76b19c2286","html_url":"https://github.com/devhelmhq/mcp-server","commit_stats":null,"previous_names":["devhelmhq/mcp-server"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/devhelmhq/mcp-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devhelmhq%2Fmcp-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devhelmhq%2Fmcp-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devhelmhq%2Fmcp-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devhelmhq%2Fmcp-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devhelmhq","download_url":"https://codeload.github.com/devhelmhq/mcp-server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devhelmhq%2Fmcp-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32273223,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-25T18:29:39.964Z","status":"ssl_error","status_checked_at":"2026-04-25T18:29:32.149Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-25T19:00:18.394Z","updated_at":"2026-05-06T21:02:28.832Z","avatar_url":"https://github.com/devhelmhq.png","language":"Python","funding_links":[],"categories":["📡 Monitoring \u0026 Observability","📊 Monitoring"],"sub_categories":[],"readme":"# DevHelm MCP Server\n\n[Model Context Protocol](https://modelcontextprotocol.io) (MCP) server for [DevHelm](https://devhelm.io) — gives AI coding assistants (Cursor, Claude Desktop, Windsurf, etc.) access to your uptime monitors, incidents, alerting, and more.\n\n## Quick Start\n\n### Hosted (recommended)\n\nUse the hosted server at `mcp.devhelm.io`. Two connection modes:\n\n**Bearer auth:**\n```\nURL: https://mcp.devhelm.io/mcp\nAuthorization: Bearer \u003cyour-api-token\u003e\n```\n\n**API key in URL** (for clients that only accept a URL):\n```\nURL: https://mcp.devhelm.io/\u003cyour-api-token\u003e/mcp\n```\n\n### Local (stdio)\n\n```bash\npip install devhelm-mcp-server\nexport DEVHELM_API_TOKEN=your-token\ndevhelm-mcp-server\n```\n\nOr with `uvx` (no install required):\n\n```bash\nexport DEVHELM_API_TOKEN=your-token\nuvx devhelm-mcp-server\n```\n\n### Cursor / Claude Desktop\n\nAdd to your MCP config:\n\n```json\n{\n  \"mcpServers\": {\n    \"devhelm\": {\n      \"url\": \"https://mcp.devhelm.io/\u003cyour-api-token\u003e/mcp\"\n    }\n  }\n}\n```\n\n## Available Tools\n\n| Category | Tools |\n|----------|-------|\n| **Monitors** | list, get, create, update, delete, pause, resume, test, results, versions |\n| **Incidents** | list, get, create, resolve, delete |\n| **Alert Channels** | list, get, create, update, delete, test |\n| **Notification Policies** | list, get, create, update, delete, test |\n| **Environments** | list, get, create, update, delete |\n| **Secrets** | list, create, update, delete |\n| **Tags** | list, get, create, update, delete |\n| **Resource Groups** | list, get, create, update, delete, add member, remove member |\n| **Webhooks** | list, get, create, update, delete, test |\n| **API Keys** | list, create, revoke, delete |\n| **Dependencies** | list, get, track, delete |\n| **Deploy Lock** | acquire, current, release, force-release |\n| **Status** | overview |\n\n## Development\n\n```bash\nuv sync\nmake dev          # Start with MCP Inspector (stdio)\nmake serve        # Start HTTP server on :8000\nmake test         # Run unit tests\nmake lint         # Check formatting\nmake typecheck    # Run mypy\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevhelmhq%2Fmcp-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevhelmhq%2Fmcp-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevhelmhq%2Fmcp-server/lists"}