johnohhh1/ops-mcp-server
3.2
If you are the rightful owner of ops-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.
The Ops MCP Server is a WebSocket server designed for managing Gmail operations through the Model Context Protocol (MCP). It integrates with Agent Builder to provide tools for fetching operations reports and managing tasks efficiently.
Tools
2
Resources
0
Prompts
0
Ops MCP Server
Real MCP (Model Context Protocol) WebSocket server for Gmail operations management. This connects to Agent Builder and provides tools for fetching ops reports and managing tasks.
Quick Start
1. Setup
# Install dependencies
npm install
# Copy and configure environment
cp .env.example .env
# Edit .env and add your AI_SECRET_TOKEN
2. Run locally
npm start
# Server runs on ws://localhost:3334
3. Deploy to Railway
- Push to GitHub:
git init
git add .
git commit -m "Initial MCP server"
git remote add origin https://github.com/johnohhh1/ops-mcp-server.git
git push -u origin main
- Connect Railway to your GitHub repo
- Add environment variable:
AI_SECRET_TOKEN - Deploy! You'll get a URL like
wss://ops-mcp-server.up.railway.app
4. Connect to Agent Builder
In OpenAI Agent Builder:
- Tools → Add → MCP
- URL:
wss://your-railway-app.up.railway.app - Tools auto-discover:
fetch_ops_reportandmark_task_done
Architecture
Agent Builder
↓ (MCP WebSocket)
This MCP Server
↓ (HTTPS + Bearer)
Your Vercel API (my-ops-runner)
↓
Gmail (future)
Available Tools
fetch_ops_report- Gets HotSchedules 911 items and Brinker deadlinesmark_task_done- Marks a task complete by ID
Environment Variables
AI_SECRET_TOKEN- Your secret token (must match Vercel)PORT- WebSocket port (default 3334)