agent-ops-mcp
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., "@agent-ops-mcpRun the quality gate on the task output before I review it."
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.
agent-ops-mcp
A demo MCP server showing the shape of a setup I built for my team: an agent that reads and writes to our internal systems directly, instead of someone pasting context into a chat by hand, plus a lightweight quality gate that checks what the agent produced before it reaches a human reviewer.
The real version talks to our actual task tracker, internal docs, and CI — that code isn't public. This repo is a self-contained rebuild of the same idea against mock data, so it runs standalone with no credentials or access to anything internal.
What it exposes
Tool | Does |
| List tasks from a mock tracker, filterable by status/assignee |
| Fetch a single task by id |
| Create a task |
| Full-text search over a small mock internal wiki |
| Fetch a doc's full content by id |
| Heuristic pre-review gate — flags hardcoded secrets, leftover |
review_check is the interesting one: instead of a human catching a stray
TODO or a hardcoded password during review, the agent runs this on its own
output first. It mirrors the review-checklist doc bundled in this repo.
Related MCP server: mcp-docs-tools
Run it
npm install
npm run build
npm startThis starts an MCP server over stdio. To try it from Claude Desktop or Claude Code, add it to your MCP config:
{
"mcpServers": {
"agent-ops-mcp": {
"command": "node",
"args": ["/absolute/path/to/agent-ops-mcp/dist/index.js"]
}
}
}For local development without a build step:
npm run devData
Everything lives in memory, seeded from src/data/tasks.ts and
src/data/docs.ts on startup. create_task mutates the in-memory list —
nothing is written to disk, so state resets every run.
Stack
TypeScript, Node.js, @modelcontextprotocol/sdk, Zod for input validation.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceProvides tools for retrieving and processing documentation through vector search, enabling AI assistants to augment their responses with relevant documentation context.7211MIT
- AlicenseNot gradedqualityDmaintenanceProvides documentation generation and analysis tools for AI agents, including JSDoc generation, README analysis, changelog generation, API documentation, and code comment analysis.47MIT
- AlicenseNot gradedqualityDmaintenanceProvides tools for AI-driven development workflows including file system operations, code analysis, code execution, web fetching, and search.Apache 2.0
- AlicenseBqualityDmaintenanceProvides a document database with search, retrieval, and creation tools, and a task tracker with search and status filtering, enabling AI agents to manage documents and tasks via natural language.3MIT
Related MCP Connectors
SEO research, audits, backlinks, GSC, and content workflow tools for AI agents.
Verifies AI agent work end to end: real artifacts and outcomes checked, not self-reported success.
Project management MCP for AI agents with safe task reads and writes.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/yulechkamsk1/agent-ops-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server