MCP servers list: a curated directory for AI agents

Model Context Protocol (MCP) is the open standard that lets an AI agent call real tools — your filesystem, your database, your APIs. Below are 10 servers worth wiring up first, grouped by what they do, with the exact package name and config shape for each. New to the protocol? Start with the MCP guide.

Filesystem & local files

Scoped read/write access so an agent can actually edit your project.

Filesystem & local files MCP servers
ServerWhat it doesTransport
Filesystem@modelcontextprotocol/server-filesystemRead, write and list files inside directories you explicitly allow.stdio
Git@modelcontextprotocol/server-gitStatus, diff, log, blame and branch operations on a local repository.stdio

Databases

Schema-aware querying, so the agent stops guessing your column names.

Databases MCP servers
ServerWhat it doesTransport
PostgreSQL@modelcontextprotocol/server-postgresInspect schema and run read-only SQL against a Postgres connection string.stdio
SQLite@modelcontextprotocol/server-sqliteQuery and explore a local SQLite database file.stdio

Web & APIs

Let the agent fetch live context instead of hallucinating documentation.

Web & APIs MCP servers
ServerWhat it doesTransport
Fetch@modelcontextprotocol/server-fetchHTTP fetching with markdown conversion — good for docs and internal APIs.stdio
Puppeteer@modelcontextprotocol/server-puppeteerHeadless browser automation: navigate, click, screenshot, scrape.stdio

Developer workflow

Issue trackers, memory and chat where the work actually happens.

Developer workflow MCP servers
ServerWhat it doesTransport
GitHub@modelcontextprotocol/server-githubIssues, pull requests, code search and file operations on GitHub repos.stdio
Slack@modelcontextprotocol/server-slackRead channels and post messages from an agent workflow.stdio
Memory@modelcontextprotocol/server-memoryPersistent knowledge-graph memory across sessions.stdio

Hosted / remote MCP

Servers you reach over HTTP instead of spawning locally.

Hosted / remote MCP MCP servers
ServerWhat it doesTransport
MANOVIK MCPhttps://manovik.in/mcpMANO 1.1 reasoning, coding, writing, translation and supply-chain scanning as MCP tools inside Claude, ChatGPT or Cursor.http

How to add one

Almost every MCP client reads the same config shape. A stdio server is spawned as a child process; a hosted server is reached over HTTP.

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-filesystem", "/Users/you/projects"]
    },
    "manovik": {
      "url": "https://manovik.in/mcp"
    }
  }
}

Choosing safely

Use MANOVIK as your MCP server

Point any MCP client at https://manovik.in/mcp and your assistant gains MANO 1.1 — planning, adversarial review and synthesis on every answer.