MCP OpsBridge
Allows interaction with GitHub repositories, including searching issues, retrieving repository statistics, and creating pull requests.
Enables querying events, creating events, and finding free time slots on Google Calendar.
Provides database operations for PostgreSQL, such as executing queries, listing tables, and describing table schemas.
Facilitates sending messages, listing channels, and retrieving thread conversations on Slack.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP OpsBridgeshow me today's calendar events"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP OpsBridge
Production MCP (Model Context Protocol) server exposing real DevOps tools for AI agents.
What It Does
Exposes 12 tools across 4 services that any MCP-compatible client (Claude Desktop, Claude Code, Cursor, custom) can discover and call:
Service | Tools |
GitHub |
|
Database |
|
Slack |
|
Calendar |
|
Related MCP server: MCP-NG
Architecture
┌──────────────────────────────────────────────────┐
│ CLIENTS │
│ Claude Desktop (stdio) │ Custom Client (HTTP) │
└────────────┬─────────────────────┬───────────────┘
│ │
▼ ▼
┌──────────────────────────────────────────────────┐
│ MCP SERVER │
│ ┌────────────────────────────────────────────┐ │
│ │ Transport: stdio | Streamable HTTP │ │
│ │ Rate Limiter: 100 req/min user, 1000/hr IP │ │
│ │ Auth: Scoped tokens per service │ │
│ │ Validation: Zod schemas on all inputs │ │
│ └────────────────────────────────────────────┘ │
└────────────┬─────────────────────┬───────────────┘
│ │
▼ ▼
┌──────────────────────────────────────────────────┐
│ EXTERNAL APIs │
│ GitHub │ Google Calendar │ PostgreSQL │ Slack │
└──────────────────────────────────────────────────┘Quick Start
With Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"opsbridge": {
"command": "npx",
"args": ["-y", "@saadahmad/opsbridge-mcp"],
"env": {
"GITHUB_TOKEN": "ghp_...",
"DATABASE_URL": "postgresql://...",
"SLACK_TOKEN": "xoxb-...",
"CALENDAR_TOKEN": "ya29..."
}
}
}
}With Docker
cp .env.example .env
# Edit .env with your tokens
docker compose up -dLocal Development
npm install
npm run build
npm run devEnvironment Variables
Variable | Required | Description |
| No* | GitHub personal access token (*required for private repos and |
| No* | PostgreSQL connection string (*required for DB tools) |
| No* | Slack bot token ( |
| No* | Google Calendar OAuth token (*required for Calendar tools) |
| No |
|
| No | HTTP port (default: 3002) |
Security
Read-only database: PostgreSQL session set to
READ ONLY+ write keyword blocklistRate limiting: LRU cache, 100 requests/minute per user, 1000/hour per IP
Scoped tokens: Each service requires its own token — tokens are not shared across services
Input validation: All tool inputs validated with Zod schemas
No secrets in code: All tokens loaded from environment variables
Development
npm run build # Compile TypeScript
npm run dev # Start dev server (stdio)
npm test # Run Vitest (23 tests)
npm run lint # Type check
npm run format # Prettier formatTech Stack
TypeScript 5.5+
@modelcontextprotocol/sdkv1.29 (MCP protocol)Zod (input validation)
@octokit/rest(GitHub API)pg(PostgreSQL)lru-cache(rate limiting)Vitest (testing)
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/SaADii09/MCP-OpsBridge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server