Skip to main content
Glama

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

List tasks from a mock tracker, filterable by status/assignee

get_task

Fetch a single task by id

create_task

Create a task

search_docs

Full-text search over a small mock internal wiki

get_doc

Fetch a doc's full content by id

review_check

Heuristic pre-review gate — flags hardcoded secrets, leftover TODO/FIXME, placeholder text, oversized diffs

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 start

This 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 dev

Data

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

Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

View all related MCP servers

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.

View all MCP Connectors

Latest Blog Posts

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