Curated MCP list

The best MCP servers for data access

Data access MCP servers let agents query databases, inspect schemas, and summarize results. These are the most popular options.

What this list covers

Data MCP servers give an AI agent a structured view of your data. Postgres and SQLite servers let the agent query relational stores. MongoDB and Redis servers handle document and key-value data. Stripe and Supabase servers wrap managed services. Most servers support read-only access by default with explicit scopes for writes, which keeps the data layer safe.

  • Postgres MCP for read-only and scoped-write SQL access
  • MongoDB MCP for document-shaped data
  • Redis MCP for ephemeral state, queues, and rate limiting
  • Supabase MCP for managed Postgres, auth, and storage
  • Stripe MCP for billing context in support workflows

The full list

7 Model Context Protocol servers, ordered by adoption.

Postgres MCP

Query relational data from agent workflows

Data

Connect AI agents to PostgreSQL with schema inspection, read-only query controls, and concise table context for safer database exploration. The reference implementation also supports restricted write access for migrations.

postgresqldatabasesqlschema
32,100 89,402 89
Install

Notion MCP

Docs, databases, and wikis for agents

Knowledge

Browse, search, and edit Notion pages and databases through MCP. Ideal for agents that need to read product specs, update docs, or summarize team wikis.

notiondocswikidatabase
13,200 44,800 80
Install

Stripe MCP

Customers, invoices, and payments for agents

Data

Expose Stripe customers, invoices, subscriptions, and payment intents to MCP clients with strict, auditable scopes. Perfect for support agents that need billing context without opening the dashboard.

stripepaymentsbillingsaas
7,600 25,400 71
Install

Supabase MCP

Postgres, auth, and edge functions for agents

Data

The official Supabase MCP server exposes database, auth, storage, and edge function tools. Read-only by default with optional write access for migrations and schema introspection.

supabasepostgresauthbaas
7,200 23,101 72
Install

SQLite MCP

Local-first SQL for agents

Data

Query local SQLite databases through MCP. A lightweight option for desktop tools, browser extensions, and any agent that needs a zero-setup SQL backend.

sqlitesqllocalembedded
5,100 16,201 63
Install

MongoDB MCP

Document database access for agents

Data

Query MongoDB collections, run aggregations, and inspect schema through MCP. A practical fit for content platforms, catalogs, and any document-shaped data product.

mongodbnosqldatabasedocuments
4,700 13,901 66
Install

Redis MCP

Cache, queues, and pub/sub for agents

Data

Read and write Redis keys, manage TTLs, and publish events from MCP clients. Useful for agents that need ephemeral state, rate limiting, or queue coordination.

rediscachequeuepubsub
3,400 10,100 61
Install

Frequently asked questions

Are MCP database servers safe to use?

Most MCP database servers default to read-only access. For write access, you can scope a database user to specific tables or use a separate read replica. MCP Haus recommends the read-only-by-default pattern.

Which database MCP should I start with?

Start with the MCP server for the database you use most. If you use Postgres, the official Postgres MCP from the modelcontextprotocol/servers repo is a good default. If you use MongoDB, Redis, or SQLite, each has a dedicated MCP server.