MCP servers directory

Standalone servers speaking the Model Context Protocol. stdio for local agents, SSE for remote ones. Listed alphabetically — this is a directory, not a ranking. Sample entries shown.

ServerDescriptionTransportVersionCategory
calendar-bridgeRead and propose calendar events with conflict detection. Proposals never write without confirmation.stdiov0.8.1productivity
db-bridgeRead-only SQL execution against Postgres/MySQL with query guardrails and row limits.stdiov2.0.3data
doc-extractPDF and Office document extraction: text blocks, tables, and page citations.stdiov1.4.2documents
email-agentTriage, draft, and label email. Drafts stay drafts until a human approves.SSEv1.2.0productivity
fs-toolsScoped file read/write, search, and patch operations for agent sandboxes.stdiov1.6.0devtools
git-helperBranch, diff, and PR workflows with conventional-commit message generation.stdiov1.1.4devtools
translate-svcGlossary-aware translation endpoint with terminology locking per project.SSEv1.1.3language
webfetchFetch and clean web content to markdown with redirect and robots handling.SSEv0.9.2web

Wiring a server into your agent

# example client config (stdio transport)
{
  "mcpServers": {
    "fs-tools": {
      "command": "npx",
      "args": ["-y", "@skillbank/mcp-fs-tools@1.6.0"],
      "env": { "FS_ROOT": "/workspace" }
    }
  }
}
tipPin the server version in your client config the same way you pin skills. @1.6.0 today means @1.6.0 next quarter.

Transports, briefly

stdio

The server runs as a child process of your agent and talks over stdin/stdout. Lowest latency, local only.

SSE

The server runs remotely and streams events over HTTP. Reachable from anywhere, needs auth.