# Top MCPs — Full install reference > The curated directory of the most useful MCPs for developers, vibe coders, and AI builders. Find the right Model Context Protocol tool fast. This file contains ready-to-paste install snippets for every MCP server in the directory, across every major client. IDEs and agents can fetch this file to resolve an MCP by name into a runnable config. ## Filesystem Read and write local files with configurable access controls. - URL: https://top-mcps.com/mcp/filesystem - Source: https://github.com/modelcontextprotocol/servers/tree/main/src/filesystem - Command: `npx -y @modelcontextprotocol/server-filesystem /path/to/allowed/dir` ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "filesystem": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-filesystem", "/path/to/allowed/dir" ] } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell claude mcp add filesystem -- npx -y @modelcontextprotocol/server-filesystem /path/to/allowed/dir ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "filesystem": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-filesystem", "/path/to/allowed/dir" ] } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "filesystem": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-filesystem", "/path/to/allowed/dir" ] } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "filesystem": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-filesystem", "/path/to/allowed/dir" ] } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "filesystem": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-filesystem", "/path/to/allowed/dir" ] } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-filesystem", "/path/to/allowed/dir" ] } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.filesystem] command = "npx" args = [ "-y", "@modelcontextprotocol/server-filesystem", "/path/to/allowed/dir", ] ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "filesystem": { "command": { "path": "npx", "args": [ "-y", "@modelcontextprotocol/server-filesystem", "/path/to/allowed/dir" ] } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` Filesystem doesn't ship a hosted HTTPS endpoint today. ChatGPT supports remote MCP servers only — to use this server in ChatGPT you'll need to deploy it to a public HTTPS URL first (e.g. via Cloudflare Workers or Vercel) or wait for an official remote build. ```none ``` ## GitHub Full GitHub API access: repos, PRs, issues, and code search. - URL: https://top-mcps.com/mcp/github - Source: https://github.com/github/github-mcp-server - Command: `npx @github/github-mcp-server` - Env: GITHUB_PERSONAL_ACCESS_TOKEN ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "github": { "command": "npx", "args": [ "@github/github-mcp-server" ], "env": { "GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_PERSONAL_ACCESS_TOKEN}" } } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell # export GITHUB_PERSONAL_ACCESS_TOKEN=ghp_your_token_here claude mcp add github -- npx @github/github-mcp-server ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "github": { "command": "npx", "args": [ "@github/github-mcp-server" ], "env": { "GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_PERSONAL_ACCESS_TOKEN}" } } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "github": { "command": "npx", "args": [ "@github/github-mcp-server" ], "env": { "GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_PERSONAL_ACCESS_TOKEN}" } } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "github": { "command": "npx", "args": [ "@github/github-mcp-server" ], "env": { "GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_PERSONAL_ACCESS_TOKEN}" } } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "github": { "command": "npx", "args": [ "@github/github-mcp-server" ], "env": { "GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_PERSONAL_ACCESS_TOKEN}" } } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "npx", "args": [ "@github/github-mcp-server" ], "env": { "GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_PERSONAL_ACCESS_TOKEN}" } } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.github] command = "npx" args = [ "@github/github-mcp-server", ] env = { GITHUB_PERSONAL_ACCESS_TOKEN = "${GITHUB_PERSONAL_ACCESS_TOKEN}" } ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "github": { "command": { "path": "npx", "args": [ "@github/github-mcp-server" ] }, "env": { "GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_PERSONAL_ACCESS_TOKEN}" } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` GitHub is also available in the official ChatGPT Apps directory — no manual setup, no Developer mode required. Open the app from the directory and grant access on first use. ```none ``` ## PostgreSQL Query and inspect PostgreSQL databases via natural language. - URL: https://top-mcps.com/mcp/postgres - Source: https://github.com/modelcontextprotocol/servers/tree/main/src/postgres - Command: `npx -y @modelcontextprotocol/server-postgres postgresql://user:pass@localhost/db` ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "postgres": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-postgres", "postgresql://user:pass@localhost/db" ] } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell claude mcp add postgres -- npx -y @modelcontextprotocol/server-postgres postgresql://user:pass@localhost/db ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "postgres": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-postgres", "postgresql://user:pass@localhost/db" ] } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "postgres": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-postgres", "postgresql://user:pass@localhost/db" ] } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "postgres": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-postgres", "postgresql://user:pass@localhost/db" ] } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "postgres": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-postgres", "postgresql://user:pass@localhost/db" ] } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-postgres", "postgresql://user:pass@localhost/db" ] } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.postgres] command = "npx" args = [ "-y", "@modelcontextprotocol/server-postgres", "postgresql://user:pass@localhost/db", ] ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "postgres": { "command": { "path": "npx", "args": [ "-y", "@modelcontextprotocol/server-postgres", "postgresql://user:pass@localhost/db" ] } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` PostgreSQL doesn't ship a hosted HTTPS endpoint today. ChatGPT supports remote MCP servers only — to use this server in ChatGPT you'll need to deploy it to a public HTTPS URL first (e.g. via Cloudflare Workers or Vercel) or wait for an official remote build. ```none ``` ## SQLite Local SQLite database access with full read/write support. - URL: https://top-mcps.com/mcp/sqlite - Source: https://github.com/modelcontextprotocol/servers/tree/main/src/sqlite - Command: `npx -y @modelcontextprotocol/server-sqlite /path/to/db.sqlite` ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "sqlite": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-sqlite", "/path/to/db.sqlite" ] } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell claude mcp add sqlite -- npx -y @modelcontextprotocol/server-sqlite /path/to/db.sqlite ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "sqlite": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-sqlite", "/path/to/db.sqlite" ] } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "sqlite": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-sqlite", "/path/to/db.sqlite" ] } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "sqlite": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-sqlite", "/path/to/db.sqlite" ] } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "sqlite": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-sqlite", "/path/to/db.sqlite" ] } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-sqlite", "/path/to/db.sqlite" ] } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.sqlite] command = "npx" args = [ "-y", "@modelcontextprotocol/server-sqlite", "/path/to/db.sqlite", ] ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "sqlite": { "command": { "path": "npx", "args": [ "-y", "@modelcontextprotocol/server-sqlite", "/path/to/db.sqlite" ] } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` SQLite doesn't ship a hosted HTTPS endpoint today. ChatGPT supports remote MCP servers only — to use this server in ChatGPT you'll need to deploy it to a public HTTPS URL first (e.g. via Cloudflare Workers or Vercel) or wait for an official remote build. ```none ``` ## Brave Search Real-time web search with privacy-focused results. - URL: https://top-mcps.com/mcp/brave-search - Source: https://github.com/modelcontextprotocol/servers/tree/main/src/brave-search - Command: `npx -y @modelcontextprotocol/server-brave-search` - Env: BRAVE_API_KEY ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "brave-search": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-brave-search" ], "env": { "BRAVE_API_KEY": "${BRAVE_API_KEY}" } } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell # export BRAVE_API_KEY=brv_your_api_key claude mcp add brave-search -- npx -y @modelcontextprotocol/server-brave-search ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "brave-search": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-brave-search" ], "env": { "BRAVE_API_KEY": "${BRAVE_API_KEY}" } } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "brave-search": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-brave-search" ], "env": { "BRAVE_API_KEY": "${BRAVE_API_KEY}" } } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "brave-search": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-brave-search" ], "env": { "BRAVE_API_KEY": "${BRAVE_API_KEY}" } } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "brave-search": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-brave-search" ], "env": { "BRAVE_API_KEY": "${BRAVE_API_KEY}" } } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-brave-search" ], "env": { "BRAVE_API_KEY": "${BRAVE_API_KEY}" } } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.brave-search] command = "npx" args = [ "-y", "@modelcontextprotocol/server-brave-search", ] env = { BRAVE_API_KEY = "${BRAVE_API_KEY}" } ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "brave-search": { "command": { "path": "npx", "args": [ "-y", "@modelcontextprotocol/server-brave-search" ] }, "env": { "BRAVE_API_KEY": "${BRAVE_API_KEY}" } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` Brave Search doesn't ship a hosted HTTPS endpoint today. ChatGPT supports remote MCP servers only — to use this server in ChatGPT you'll need to deploy it to a public HTTPS URL first (e.g. via Cloudflare Workers or Vercel) or wait for an official remote build. ```none ``` ## Fetch Retrieve web pages and convert them to clean markdown. - URL: https://top-mcps.com/mcp/fetch - Source: https://github.com/modelcontextprotocol/servers/tree/main/src/fetch - Command: `npx -y @modelcontextprotocol/server-fetch` ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "fetch": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-fetch" ] } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell claude mcp add fetch -- npx -y @modelcontextprotocol/server-fetch ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "fetch": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-fetch" ] } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "fetch": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-fetch" ] } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "fetch": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-fetch" ] } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "fetch": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-fetch" ] } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-fetch" ] } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.fetch] command = "npx" args = [ "-y", "@modelcontextprotocol/server-fetch", ] ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "fetch": { "command": { "path": "npx", "args": [ "-y", "@modelcontextprotocol/server-fetch" ] } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` Fetch doesn't ship a hosted HTTPS endpoint today. ChatGPT supports remote MCP servers only — to use this server in ChatGPT you'll need to deploy it to a public HTTPS URL first (e.g. via Cloudflare Workers or Vercel) or wait for an official remote build. ```none ``` ## Puppeteer Full browser automation: navigate, click, screenshot, and scrape. - URL: https://top-mcps.com/mcp/puppeteer - Source: https://github.com/modelcontextprotocol/servers/tree/main/src/puppeteer - Command: `npx -y @modelcontextprotocol/server-puppeteer` ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "puppeteer": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-puppeteer" ] } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell claude mcp add puppeteer -- npx -y @modelcontextprotocol/server-puppeteer ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "puppeteer": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-puppeteer" ] } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "puppeteer": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-puppeteer" ] } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "puppeteer": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-puppeteer" ] } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "puppeteer": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-puppeteer" ] } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-puppeteer" ] } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.puppeteer] command = "npx" args = [ "-y", "@modelcontextprotocol/server-puppeteer", ] ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "puppeteer": { "command": { "path": "npx", "args": [ "-y", "@modelcontextprotocol/server-puppeteer" ] } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` Puppeteer doesn't ship a hosted HTTPS endpoint today. ChatGPT supports remote MCP servers only — to use this server in ChatGPT you'll need to deploy it to a public HTTPS URL first (e.g. via Cloudflare Workers or Vercel) or wait for an official remote build. ```none ``` ## Sequential Thinking Structured step-by-step reasoning for complex problem solving. - URL: https://top-mcps.com/mcp/sequential-thinking - Source: https://github.com/modelcontextprotocol/servers/tree/main/src/sequentialthinking - Command: `npx -y @modelcontextprotocol/server-sequential-thinking` ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "sequential-thinking": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-sequential-thinking" ] } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell claude mcp add sequential-thinking -- npx -y @modelcontextprotocol/server-sequential-thinking ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "sequential-thinking": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-sequential-thinking" ] } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "sequential-thinking": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-sequential-thinking" ] } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "sequential-thinking": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-sequential-thinking" ] } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "sequential-thinking": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-sequential-thinking" ] } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-sequential-thinking" ] } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.sequential-thinking] command = "npx" args = [ "-y", "@modelcontextprotocol/server-sequential-thinking", ] ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "sequential-thinking": { "command": { "path": "npx", "args": [ "-y", "@modelcontextprotocol/server-sequential-thinking" ] } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` Sequential Thinking doesn't ship a hosted HTTPS endpoint today. ChatGPT supports remote MCP servers only — to use this server in ChatGPT you'll need to deploy it to a public HTTPS URL first (e.g. via Cloudflare Workers or Vercel) or wait for an official remote build. ```none ``` ## Memory Persistent knowledge graph memory across AI conversations. - URL: https://top-mcps.com/mcp/memory - Source: https://github.com/modelcontextprotocol/servers/tree/main/src/memory - Command: `npx -y @modelcontextprotocol/server-memory` ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "memory": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-memory" ] } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell claude mcp add memory -- npx -y @modelcontextprotocol/server-memory ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "memory": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-memory" ] } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "memory": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-memory" ] } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "memory": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-memory" ] } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "memory": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-memory" ] } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-memory" ] } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.memory] command = "npx" args = [ "-y", "@modelcontextprotocol/server-memory", ] ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "memory": { "command": { "path": "npx", "args": [ "-y", "@modelcontextprotocol/server-memory" ] } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` Memory doesn't ship a hosted HTTPS endpoint today. ChatGPT supports remote MCP servers only — to use this server in ChatGPT you'll need to deploy it to a public HTTPS URL first (e.g. via Cloudflare Workers or Vercel) or wait for an official remote build. ```none ``` ## Git Local Git operations: commit, diff, log, branch, and more. - URL: https://top-mcps.com/mcp/git - Source: https://github.com/modelcontextprotocol/servers/tree/main/src/git - Command: `uvx mcp-server-git --repository /path/to/repo` ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "git": { "command": "uvx", "args": [ "mcp-server-git", "--repository", "/path/to/repo" ] } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell claude mcp add git -- uvx mcp-server-git --repository /path/to/repo ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "git": { "command": "uvx", "args": [ "mcp-server-git", "--repository", "/path/to/repo" ] } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "git": { "command": "uvx", "args": [ "mcp-server-git", "--repository", "/path/to/repo" ] } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "git": { "command": "uvx", "args": [ "mcp-server-git", "--repository", "/path/to/repo" ] } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "git": { "command": "uvx", "args": [ "mcp-server-git", "--repository", "/path/to/repo" ] } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "uvx", "args": [ "mcp-server-git", "--repository", "/path/to/repo" ] } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.git] command = "uvx" args = [ "mcp-server-git", "--repository", "/path/to/repo", ] ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "git": { "command": { "path": "uvx", "args": [ "mcp-server-git", "--repository", "/path/to/repo" ] } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` Git doesn't ship a hosted HTTPS endpoint today. ChatGPT supports remote MCP servers only — to use this server in ChatGPT you'll need to deploy it to a public HTTPS URL first (e.g. via Cloudflare Workers or Vercel) or wait for an official remote build. ```none ``` ## Context7 Up-to-date library docs pulled directly into your AI context. - URL: https://top-mcps.com/mcp/context7 - Source: https://github.com/upstash/context7 - Command: `npx -y @upstash/context7-mcp` ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "context7": { "command": "npx", "args": [ "-y", "@upstash/context7-mcp" ] } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell claude mcp add context7 -- npx -y @upstash/context7-mcp ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "context7": { "command": "npx", "args": [ "-y", "@upstash/context7-mcp" ] } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "context7": { "command": "npx", "args": [ "-y", "@upstash/context7-mcp" ] } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "context7": { "command": "npx", "args": [ "-y", "@upstash/context7-mcp" ] } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "context7": { "command": "npx", "args": [ "-y", "@upstash/context7-mcp" ] } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "npx", "args": [ "-y", "@upstash/context7-mcp" ] } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.context7] command = "npx" args = [ "-y", "@upstash/context7-mcp", ] ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "context7": { "command": { "path": "npx", "args": [ "-y", "@upstash/context7-mcp" ] } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` Context7 doesn't ship a hosted HTTPS endpoint today. ChatGPT supports remote MCP servers only — to use this server in ChatGPT you'll need to deploy it to a public HTTPS URL first (e.g. via Cloudflare Workers or Vercel) or wait for an official remote build. ```none ``` ## Supabase Full Supabase access: database, auth, storage, and edge functions. - URL: https://top-mcps.com/mcp/supabase - Source: https://github.com/supabase-community/supabase-mcp - Command: `npx @supabase/mcp-server-supabase@latest` - Env: SUPABASE_ACCESS_TOKEN ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "supabase": { "command": "npx", "args": [ "@supabase/mcp-server-supabase@latest" ], "env": { "SUPABASE_ACCESS_TOKEN": "${SUPABASE_ACCESS_TOKEN}" } } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell # export SUPABASE_ACCESS_TOKEN=sbp_your_access_token claude mcp add supabase -- npx @supabase/mcp-server-supabase@latest ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "supabase": { "command": "npx", "args": [ "@supabase/mcp-server-supabase@latest" ], "env": { "SUPABASE_ACCESS_TOKEN": "${SUPABASE_ACCESS_TOKEN}" } } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "supabase": { "command": "npx", "args": [ "@supabase/mcp-server-supabase@latest" ], "env": { "SUPABASE_ACCESS_TOKEN": "${SUPABASE_ACCESS_TOKEN}" } } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "supabase": { "command": "npx", "args": [ "@supabase/mcp-server-supabase@latest" ], "env": { "SUPABASE_ACCESS_TOKEN": "${SUPABASE_ACCESS_TOKEN}" } } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "supabase": { "command": "npx", "args": [ "@supabase/mcp-server-supabase@latest" ], "env": { "SUPABASE_ACCESS_TOKEN": "${SUPABASE_ACCESS_TOKEN}" } } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "npx", "args": [ "@supabase/mcp-server-supabase@latest" ], "env": { "SUPABASE_ACCESS_TOKEN": "${SUPABASE_ACCESS_TOKEN}" } } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.supabase] command = "npx" args = [ "@supabase/mcp-server-supabase@latest", ] env = { SUPABASE_ACCESS_TOKEN = "${SUPABASE_ACCESS_TOKEN}" } ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "supabase": { "command": { "path": "npx", "args": [ "@supabase/mcp-server-supabase@latest" ] }, "env": { "SUPABASE_ACCESS_TOKEN": "${SUPABASE_ACCESS_TOKEN}" } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` Supabase is also available in the official ChatGPT Apps directory — no manual setup, no Developer mode required. Open the app from the directory and grant access on first use. ```none ``` ## Slack Read and send Slack messages, manage channels and threads. - URL: https://top-mcps.com/mcp/slack - Source: https://github.com/modelcontextprotocol/servers/tree/main/src/slack - Command: `npx -y @modelcontextprotocol/server-slack` - Env: SLACK_BOT_TOKEN, SLACK_TEAM_ID ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "slack": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-slack" ], "env": { "SLACK_BOT_TOKEN": "${SLACK_BOT_TOKEN}", "SLACK_TEAM_ID": "${SLACK_TEAM_ID}" } } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell # export SLACK_BOT_TOKEN=xoxb-your-bot-token # export SLACK_TEAM_ID=T0000000 claude mcp add slack -- npx -y @modelcontextprotocol/server-slack ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "slack": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-slack" ], "env": { "SLACK_BOT_TOKEN": "${SLACK_BOT_TOKEN}", "SLACK_TEAM_ID": "${SLACK_TEAM_ID}" } } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "slack": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-slack" ], "env": { "SLACK_BOT_TOKEN": "${SLACK_BOT_TOKEN}", "SLACK_TEAM_ID": "${SLACK_TEAM_ID}" } } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "slack": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-slack" ], "env": { "SLACK_BOT_TOKEN": "${SLACK_BOT_TOKEN}", "SLACK_TEAM_ID": "${SLACK_TEAM_ID}" } } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "slack": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-slack" ], "env": { "SLACK_BOT_TOKEN": "${SLACK_BOT_TOKEN}", "SLACK_TEAM_ID": "${SLACK_TEAM_ID}" } } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-slack" ], "env": { "SLACK_BOT_TOKEN": "${SLACK_BOT_TOKEN}", "SLACK_TEAM_ID": "${SLACK_TEAM_ID}" } } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.slack] command = "npx" args = [ "-y", "@modelcontextprotocol/server-slack", ] env = { SLACK_BOT_TOKEN = "${SLACK_BOT_TOKEN}", SLACK_TEAM_ID = "${SLACK_TEAM_ID}" } ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "slack": { "command": { "path": "npx", "args": [ "-y", "@modelcontextprotocol/server-slack" ] }, "env": { "SLACK_BOT_TOKEN": "${SLACK_BOT_TOKEN}", "SLACK_TEAM_ID": "${SLACK_TEAM_ID}" } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` Slack is also available in the official ChatGPT Apps directory — no manual setup, no Developer mode required. Open the app from the directory and grant access on first use. ```none ``` ## E2B Secure cloud sandboxes for executing AI-generated code. - URL: https://top-mcps.com/mcp/e2b - Source: https://github.com/e2b-dev/mcp-server - Command: `npx @e2b/mcp-server` - Env: E2B_API_KEY ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "e2b": { "command": "npx", "args": [ "@e2b/mcp-server" ], "env": { "E2B_API_KEY": "${E2B_API_KEY}" } } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell # export E2B_API_KEY=e2b_your_api_key claude mcp add e2b -- npx @e2b/mcp-server ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "e2b": { "command": "npx", "args": [ "@e2b/mcp-server" ], "env": { "E2B_API_KEY": "${E2B_API_KEY}" } } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "e2b": { "command": "npx", "args": [ "@e2b/mcp-server" ], "env": { "E2B_API_KEY": "${E2B_API_KEY}" } } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "e2b": { "command": "npx", "args": [ "@e2b/mcp-server" ], "env": { "E2B_API_KEY": "${E2B_API_KEY}" } } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "e2b": { "command": "npx", "args": [ "@e2b/mcp-server" ], "env": { "E2B_API_KEY": "${E2B_API_KEY}" } } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "npx", "args": [ "@e2b/mcp-server" ], "env": { "E2B_API_KEY": "${E2B_API_KEY}" } } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.e2b] command = "npx" args = [ "@e2b/mcp-server", ] env = { E2B_API_KEY = "${E2B_API_KEY}" } ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "e2b": { "command": { "path": "npx", "args": [ "@e2b/mcp-server" ] }, "env": { "E2B_API_KEY": "${E2B_API_KEY}" } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` E2B doesn't ship a hosted HTTPS endpoint today. ChatGPT supports remote MCP servers only — to use this server in ChatGPT you'll need to deploy it to a public HTTPS URL first (e.g. via Cloudflare Workers or Vercel) or wait for an official remote build. ```none ``` ## Linear Manage Linear issues, projects, and cycles from AI context. - URL: https://top-mcps.com/mcp/linear - Source: https://github.com/linear/linear-mcp-server - Command: `npx @linear/mcp-server` - Env: LINEAR_API_KEY ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "linear": { "command": "npx", "args": [ "@linear/mcp-server" ], "env": { "LINEAR_API_KEY": "${LINEAR_API_KEY}" } } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell # export LINEAR_API_KEY=lin_api_your_key claude mcp add linear -- npx @linear/mcp-server ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "linear": { "command": "npx", "args": [ "@linear/mcp-server" ], "env": { "LINEAR_API_KEY": "${LINEAR_API_KEY}" } } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "linear": { "command": "npx", "args": [ "@linear/mcp-server" ], "env": { "LINEAR_API_KEY": "${LINEAR_API_KEY}" } } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "linear": { "command": "npx", "args": [ "@linear/mcp-server" ], "env": { "LINEAR_API_KEY": "${LINEAR_API_KEY}" } } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "linear": { "command": "npx", "args": [ "@linear/mcp-server" ], "env": { "LINEAR_API_KEY": "${LINEAR_API_KEY}" } } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "npx", "args": [ "@linear/mcp-server" ], "env": { "LINEAR_API_KEY": "${LINEAR_API_KEY}" } } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.linear] command = "npx" args = [ "@linear/mcp-server", ] env = { LINEAR_API_KEY = "${LINEAR_API_KEY}" } ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "linear": { "command": { "path": "npx", "args": [ "@linear/mcp-server" ] }, "env": { "LINEAR_API_KEY": "${LINEAR_API_KEY}" } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` Linear doesn't ship a hosted HTTPS endpoint today. ChatGPT supports remote MCP servers only — to use this server in ChatGPT you'll need to deploy it to a public HTTPS URL first (e.g. via Cloudflare Workers or Vercel) or wait for an official remote build. ```none ``` ## Stripe Manage payments, customers, and subscriptions through Stripe. - URL: https://top-mcps.com/mcp/stripe - Source: https://github.com/stripe/agent-toolkit - Command: `npx -y @stripe/mcp` - Env: STRIPE_SECRET_KEY ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "stripe": { "command": "npx", "args": [ "-y", "@stripe/mcp" ], "env": { "STRIPE_SECRET_KEY": "${STRIPE_SECRET_KEY}" } } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell # export STRIPE_SECRET_KEY=sk_test_your_key claude mcp add stripe -- npx -y @stripe/mcp ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "stripe": { "command": "npx", "args": [ "-y", "@stripe/mcp" ], "env": { "STRIPE_SECRET_KEY": "${STRIPE_SECRET_KEY}" } } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "stripe": { "command": "npx", "args": [ "-y", "@stripe/mcp" ], "env": { "STRIPE_SECRET_KEY": "${STRIPE_SECRET_KEY}" } } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "stripe": { "command": "npx", "args": [ "-y", "@stripe/mcp" ], "env": { "STRIPE_SECRET_KEY": "${STRIPE_SECRET_KEY}" } } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "stripe": { "command": "npx", "args": [ "-y", "@stripe/mcp" ], "env": { "STRIPE_SECRET_KEY": "${STRIPE_SECRET_KEY}" } } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "npx", "args": [ "-y", "@stripe/mcp" ], "env": { "STRIPE_SECRET_KEY": "${STRIPE_SECRET_KEY}" } } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.stripe] command = "npx" args = [ "-y", "@stripe/mcp", ] env = { STRIPE_SECRET_KEY = "${STRIPE_SECRET_KEY}" } ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "stripe": { "command": { "path": "npx", "args": [ "-y", "@stripe/mcp" ] }, "env": { "STRIPE_SECRET_KEY": "${STRIPE_SECRET_KEY}" } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` Stripe is also available in the official ChatGPT Apps directory — no manual setup, no Developer mode required. Open the app from the directory and grant access on first use. ```none ``` ## Notion Read, write, and search across Notion pages, databases, and blocks. - URL: https://top-mcps.com/mcp/notion - Source: https://github.com/makenotion/notion-mcp-server - Command: `npx -y @notionhq/notion-mcp-server` - Env: NOTION_API_KEY ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "notion": { "command": "npx", "args": [ "-y", "@notionhq/notion-mcp-server" ], "env": { "NOTION_API_KEY": "${NOTION_API_KEY}" } } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell # export NOTION_API_KEY=secret_your_integration_token claude mcp add notion -- npx -y @notionhq/notion-mcp-server ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "notion": { "command": "npx", "args": [ "-y", "@notionhq/notion-mcp-server" ], "env": { "NOTION_API_KEY": "${NOTION_API_KEY}" } } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "notion": { "command": "npx", "args": [ "-y", "@notionhq/notion-mcp-server" ], "env": { "NOTION_API_KEY": "${NOTION_API_KEY}" } } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "notion": { "command": "npx", "args": [ "-y", "@notionhq/notion-mcp-server" ], "env": { "NOTION_API_KEY": "${NOTION_API_KEY}" } } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "notion": { "command": "npx", "args": [ "-y", "@notionhq/notion-mcp-server" ], "env": { "NOTION_API_KEY": "${NOTION_API_KEY}" } } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "npx", "args": [ "-y", "@notionhq/notion-mcp-server" ], "env": { "NOTION_API_KEY": "${NOTION_API_KEY}" } } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.notion] command = "npx" args = [ "-y", "@notionhq/notion-mcp-server", ] env = { NOTION_API_KEY = "${NOTION_API_KEY}" } ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "notion": { "command": { "path": "npx", "args": [ "-y", "@notionhq/notion-mcp-server" ] }, "env": { "NOTION_API_KEY": "${NOTION_API_KEY}" } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` Notion is also available in the official ChatGPT Apps directory — no manual setup, no Developer mode required. Open the app from the directory and grant access on first use. ```none ``` ## Sentry Triage errors, inspect traces, and query events from Sentry. - URL: https://top-mcps.com/mcp/sentry - Source: https://github.com/getsentry/sentry-mcp - Command: `npx -y @sentry/mcp-server` - Env: SENTRY_AUTH_TOKEN, SENTRY_ORG ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "sentry": { "command": "npx", "args": [ "-y", "@sentry/mcp-server" ], "env": { "SENTRY_AUTH_TOKEN": "${SENTRY_AUTH_TOKEN}", "SENTRY_ORG": "${SENTRY_ORG}" } } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell # export SENTRY_AUTH_TOKEN=sntrys_your_token # export SENTRY_ORG=your-org-slug claude mcp add sentry -- npx -y @sentry/mcp-server ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "sentry": { "command": "npx", "args": [ "-y", "@sentry/mcp-server" ], "env": { "SENTRY_AUTH_TOKEN": "${SENTRY_AUTH_TOKEN}", "SENTRY_ORG": "${SENTRY_ORG}" } } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "sentry": { "command": "npx", "args": [ "-y", "@sentry/mcp-server" ], "env": { "SENTRY_AUTH_TOKEN": "${SENTRY_AUTH_TOKEN}", "SENTRY_ORG": "${SENTRY_ORG}" } } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "sentry": { "command": "npx", "args": [ "-y", "@sentry/mcp-server" ], "env": { "SENTRY_AUTH_TOKEN": "${SENTRY_AUTH_TOKEN}", "SENTRY_ORG": "${SENTRY_ORG}" } } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "sentry": { "command": "npx", "args": [ "-y", "@sentry/mcp-server" ], "env": { "SENTRY_AUTH_TOKEN": "${SENTRY_AUTH_TOKEN}", "SENTRY_ORG": "${SENTRY_ORG}" } } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "npx", "args": [ "-y", "@sentry/mcp-server" ], "env": { "SENTRY_AUTH_TOKEN": "${SENTRY_AUTH_TOKEN}", "SENTRY_ORG": "${SENTRY_ORG}" } } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.sentry] command = "npx" args = [ "-y", "@sentry/mcp-server", ] env = { SENTRY_AUTH_TOKEN = "${SENTRY_AUTH_TOKEN}", SENTRY_ORG = "${SENTRY_ORG}" } ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "sentry": { "command": { "path": "npx", "args": [ "-y", "@sentry/mcp-server" ] }, "env": { "SENTRY_AUTH_TOKEN": "${SENTRY_AUTH_TOKEN}", "SENTRY_ORG": "${SENTRY_ORG}" } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` Sentry doesn't ship a hosted HTTPS endpoint today. ChatGPT supports remote MCP servers only — to use this server in ChatGPT you'll need to deploy it to a public HTTPS URL first (e.g. via Cloudflare Workers or Vercel) or wait for an official remote build. ```none ``` ## Cloudflare Manage Workers, R2 buckets, DNS, and edge policies on Cloudflare. - URL: https://top-mcps.com/mcp/cloudflare - Source: https://github.com/cloudflare/mcp-server-cloudflare - Command: `npx -y @cloudflare/mcp-server-cloudflare` - Env: CLOUDFLARE_API_TOKEN, CLOUDFLARE_ACCOUNT_ID ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "cloudflare": { "command": "npx", "args": [ "-y", "@cloudflare/mcp-server-cloudflare" ], "env": { "CLOUDFLARE_API_TOKEN": "${CLOUDFLARE_API_TOKEN}", "CLOUDFLARE_ACCOUNT_ID": "${CLOUDFLARE_ACCOUNT_ID}" } } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell # export CLOUDFLARE_API_TOKEN=your_scoped_token # export CLOUDFLARE_ACCOUNT_ID=your_account_id claude mcp add cloudflare -- npx -y @cloudflare/mcp-server-cloudflare ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "cloudflare": { "command": "npx", "args": [ "-y", "@cloudflare/mcp-server-cloudflare" ], "env": { "CLOUDFLARE_API_TOKEN": "${CLOUDFLARE_API_TOKEN}", "CLOUDFLARE_ACCOUNT_ID": "${CLOUDFLARE_ACCOUNT_ID}" } } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "cloudflare": { "command": "npx", "args": [ "-y", "@cloudflare/mcp-server-cloudflare" ], "env": { "CLOUDFLARE_API_TOKEN": "${CLOUDFLARE_API_TOKEN}", "CLOUDFLARE_ACCOUNT_ID": "${CLOUDFLARE_ACCOUNT_ID}" } } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "cloudflare": { "command": "npx", "args": [ "-y", "@cloudflare/mcp-server-cloudflare" ], "env": { "CLOUDFLARE_API_TOKEN": "${CLOUDFLARE_API_TOKEN}", "CLOUDFLARE_ACCOUNT_ID": "${CLOUDFLARE_ACCOUNT_ID}" } } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "cloudflare": { "command": "npx", "args": [ "-y", "@cloudflare/mcp-server-cloudflare" ], "env": { "CLOUDFLARE_API_TOKEN": "${CLOUDFLARE_API_TOKEN}", "CLOUDFLARE_ACCOUNT_ID": "${CLOUDFLARE_ACCOUNT_ID}" } } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "npx", "args": [ "-y", "@cloudflare/mcp-server-cloudflare" ], "env": { "CLOUDFLARE_API_TOKEN": "${CLOUDFLARE_API_TOKEN}", "CLOUDFLARE_ACCOUNT_ID": "${CLOUDFLARE_ACCOUNT_ID}" } } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.cloudflare] command = "npx" args = [ "-y", "@cloudflare/mcp-server-cloudflare", ] env = { CLOUDFLARE_API_TOKEN = "${CLOUDFLARE_API_TOKEN}", CLOUDFLARE_ACCOUNT_ID = "${CLOUDFLARE_ACCOUNT_ID}" } ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "cloudflare": { "command": { "path": "npx", "args": [ "-y", "@cloudflare/mcp-server-cloudflare" ] }, "env": { "CLOUDFLARE_API_TOKEN": "${CLOUDFLARE_API_TOKEN}", "CLOUDFLARE_ACCOUNT_ID": "${CLOUDFLARE_ACCOUNT_ID}" } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` Cloudflare doesn't ship a hosted HTTPS endpoint today. ChatGPT supports remote MCP servers only — to use this server in ChatGPT you'll need to deploy it to a public HTTPS URL first (e.g. via Cloudflare Workers or Vercel) or wait for an official remote build. ```none ``` ## Hugging Face Search, inspect, and run Hugging Face models and datasets from an agent. - URL: https://top-mcps.com/mcp/huggingface - Source: https://github.com/huggingface/hf-mcp-server - Command: `npx -y @huggingface/mcp-server` - Env: HF_TOKEN ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "huggingface": { "command": "npx", "args": [ "-y", "@huggingface/mcp-server" ], "env": { "HF_TOKEN": "${HF_TOKEN}" } } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell # export HF_TOKEN=hf_your_token claude mcp add huggingface -- npx -y @huggingface/mcp-server ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "huggingface": { "command": "npx", "args": [ "-y", "@huggingface/mcp-server" ], "env": { "HF_TOKEN": "${HF_TOKEN}" } } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "huggingface": { "command": "npx", "args": [ "-y", "@huggingface/mcp-server" ], "env": { "HF_TOKEN": "${HF_TOKEN}" } } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "huggingface": { "command": "npx", "args": [ "-y", "@huggingface/mcp-server" ], "env": { "HF_TOKEN": "${HF_TOKEN}" } } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "huggingface": { "command": "npx", "args": [ "-y", "@huggingface/mcp-server" ], "env": { "HF_TOKEN": "${HF_TOKEN}" } } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "npx", "args": [ "-y", "@huggingface/mcp-server" ], "env": { "HF_TOKEN": "${HF_TOKEN}" } } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.huggingface] command = "npx" args = [ "-y", "@huggingface/mcp-server", ] env = { HF_TOKEN = "${HF_TOKEN}" } ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "huggingface": { "command": { "path": "npx", "args": [ "-y", "@huggingface/mcp-server" ] }, "env": { "HF_TOKEN": "${HF_TOKEN}" } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` Hugging Face is also available in the official ChatGPT Apps directory — no manual setup, no Developer mode required. Open the app from the directory and grant access on first use. ```none ``` ## Google Calendar Read, create, and manage events across Google Calendar. - URL: https://top-mcps.com/mcp/google-calendar - Source: https://github.com/GongRzhe/Calendar-MCP-Server - Command: `npx -y @gongrzhe/google-calendar-mcp` - Env: GOOGLE_CLIENT_ID, GOOGLE_CLIENT_SECRET ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "google-calendar": { "command": "npx", "args": [ "-y", "@gongrzhe/google-calendar-mcp" ], "env": { "GOOGLE_CLIENT_ID": "${GOOGLE_CLIENT_ID}", "GOOGLE_CLIENT_SECRET": "${GOOGLE_CLIENT_SECRET}" } } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell # export GOOGLE_CLIENT_ID=your_oauth_client_id # export GOOGLE_CLIENT_SECRET=your_oauth_secret claude mcp add google-calendar -- npx -y @gongrzhe/google-calendar-mcp ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "google-calendar": { "command": "npx", "args": [ "-y", "@gongrzhe/google-calendar-mcp" ], "env": { "GOOGLE_CLIENT_ID": "${GOOGLE_CLIENT_ID}", "GOOGLE_CLIENT_SECRET": "${GOOGLE_CLIENT_SECRET}" } } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "google-calendar": { "command": "npx", "args": [ "-y", "@gongrzhe/google-calendar-mcp" ], "env": { "GOOGLE_CLIENT_ID": "${GOOGLE_CLIENT_ID}", "GOOGLE_CLIENT_SECRET": "${GOOGLE_CLIENT_SECRET}" } } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "google-calendar": { "command": "npx", "args": [ "-y", "@gongrzhe/google-calendar-mcp" ], "env": { "GOOGLE_CLIENT_ID": "${GOOGLE_CLIENT_ID}", "GOOGLE_CLIENT_SECRET": "${GOOGLE_CLIENT_SECRET}" } } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "google-calendar": { "command": "npx", "args": [ "-y", "@gongrzhe/google-calendar-mcp" ], "env": { "GOOGLE_CLIENT_ID": "${GOOGLE_CLIENT_ID}", "GOOGLE_CLIENT_SECRET": "${GOOGLE_CLIENT_SECRET}" } } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "npx", "args": [ "-y", "@gongrzhe/google-calendar-mcp" ], "env": { "GOOGLE_CLIENT_ID": "${GOOGLE_CLIENT_ID}", "GOOGLE_CLIENT_SECRET": "${GOOGLE_CLIENT_SECRET}" } } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.google-calendar] command = "npx" args = [ "-y", "@gongrzhe/google-calendar-mcp", ] env = { GOOGLE_CLIENT_ID = "${GOOGLE_CLIENT_ID}", GOOGLE_CLIENT_SECRET = "${GOOGLE_CLIENT_SECRET}" } ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "google-calendar": { "command": { "path": "npx", "args": [ "-y", "@gongrzhe/google-calendar-mcp" ] }, "env": { "GOOGLE_CLIENT_ID": "${GOOGLE_CLIENT_ID}", "GOOGLE_CLIENT_SECRET": "${GOOGLE_CLIENT_SECRET}" } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` Google Calendar doesn't ship a hosted HTTPS endpoint today. ChatGPT supports remote MCP servers only — to use this server in ChatGPT you'll need to deploy it to a public HTTPS URL first (e.g. via Cloudflare Workers or Vercel) or wait for an official remote build. ```none ``` ## Google Maps Geocoding, place search, directions, and travel times from Google Maps. - URL: https://top-mcps.com/mcp/google-maps - Source: https://github.com/modelcontextprotocol/servers/tree/main/src/google-maps - Command: `npx -y @modelcontextprotocol/server-google-maps` - Env: GOOGLE_MAPS_API_KEY ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "google-maps": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-google-maps" ], "env": { "GOOGLE_MAPS_API_KEY": "${GOOGLE_MAPS_API_KEY}" } } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell # export GOOGLE_MAPS_API_KEY=AIza_your_api_key claude mcp add google-maps -- npx -y @modelcontextprotocol/server-google-maps ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "google-maps": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-google-maps" ], "env": { "GOOGLE_MAPS_API_KEY": "${GOOGLE_MAPS_API_KEY}" } } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "google-maps": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-google-maps" ], "env": { "GOOGLE_MAPS_API_KEY": "${GOOGLE_MAPS_API_KEY}" } } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "google-maps": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-google-maps" ], "env": { "GOOGLE_MAPS_API_KEY": "${GOOGLE_MAPS_API_KEY}" } } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "google-maps": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-google-maps" ], "env": { "GOOGLE_MAPS_API_KEY": "${GOOGLE_MAPS_API_KEY}" } } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-google-maps" ], "env": { "GOOGLE_MAPS_API_KEY": "${GOOGLE_MAPS_API_KEY}" } } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.google-maps] command = "npx" args = [ "-y", "@modelcontextprotocol/server-google-maps", ] env = { GOOGLE_MAPS_API_KEY = "${GOOGLE_MAPS_API_KEY}" } ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "google-maps": { "command": { "path": "npx", "args": [ "-y", "@modelcontextprotocol/server-google-maps" ] }, "env": { "GOOGLE_MAPS_API_KEY": "${GOOGLE_MAPS_API_KEY}" } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` Google Maps doesn't ship a hosted HTTPS endpoint today. ChatGPT supports remote MCP servers only — to use this server in ChatGPT you'll need to deploy it to a public HTTPS URL first (e.g. via Cloudflare Workers or Vercel) or wait for an official remote build. ```none ``` ## Shopify Read products, orders, and inventory from your Shopify store. - URL: https://top-mcps.com/mcp/shopify - Source: https://github.com/Shopify/dev-mcp - Command: `npx -y @shopify/dev-mcp` - Env: SHOPIFY_ACCESS_TOKEN, SHOPIFY_SHOP ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "shopify": { "command": "npx", "args": [ "-y", "@shopify/dev-mcp" ], "env": { "SHOPIFY_ACCESS_TOKEN": "${SHOPIFY_ACCESS_TOKEN}", "SHOPIFY_SHOP": "${SHOPIFY_SHOP}" } } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell # export SHOPIFY_ACCESS_TOKEN=shpat_your_token # export SHOPIFY_SHOP=your-shop.myshopify.com claude mcp add shopify -- npx -y @shopify/dev-mcp ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "shopify": { "command": "npx", "args": [ "-y", "@shopify/dev-mcp" ], "env": { "SHOPIFY_ACCESS_TOKEN": "${SHOPIFY_ACCESS_TOKEN}", "SHOPIFY_SHOP": "${SHOPIFY_SHOP}" } } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "shopify": { "command": "npx", "args": [ "-y", "@shopify/dev-mcp" ], "env": { "SHOPIFY_ACCESS_TOKEN": "${SHOPIFY_ACCESS_TOKEN}", "SHOPIFY_SHOP": "${SHOPIFY_SHOP}" } } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "shopify": { "command": "npx", "args": [ "-y", "@shopify/dev-mcp" ], "env": { "SHOPIFY_ACCESS_TOKEN": "${SHOPIFY_ACCESS_TOKEN}", "SHOPIFY_SHOP": "${SHOPIFY_SHOP}" } } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "shopify": { "command": "npx", "args": [ "-y", "@shopify/dev-mcp" ], "env": { "SHOPIFY_ACCESS_TOKEN": "${SHOPIFY_ACCESS_TOKEN}", "SHOPIFY_SHOP": "${SHOPIFY_SHOP}" } } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "npx", "args": [ "-y", "@shopify/dev-mcp" ], "env": { "SHOPIFY_ACCESS_TOKEN": "${SHOPIFY_ACCESS_TOKEN}", "SHOPIFY_SHOP": "${SHOPIFY_SHOP}" } } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.shopify] command = "npx" args = [ "-y", "@shopify/dev-mcp", ] env = { SHOPIFY_ACCESS_TOKEN = "${SHOPIFY_ACCESS_TOKEN}", SHOPIFY_SHOP = "${SHOPIFY_SHOP}" } ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "shopify": { "command": { "path": "npx", "args": [ "-y", "@shopify/dev-mcp" ] }, "env": { "SHOPIFY_ACCESS_TOKEN": "${SHOPIFY_ACCESS_TOKEN}", "SHOPIFY_SHOP": "${SHOPIFY_SHOP}" } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` Shopify is also available in the official ChatGPT Apps directory — no manual setup, no Developer mode required. Open the app from the directory and grant access on first use. ```none ``` ## Zapier Expose 8,000+ Zapier integrations as tools your AI agent can call. - URL: https://top-mcps.com/mcp/zapier - Source: https://github.com/zapier/mcp - Command: `npx -y @zapier/mcp` - Env: ZAPIER_API_KEY ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "zapier": { "command": "npx", "args": [ "-y", "@zapier/mcp" ], "env": { "ZAPIER_API_KEY": "${ZAPIER_API_KEY}" } } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell # export ZAPIER_API_KEY=your_zapier_key claude mcp add zapier -- npx -y @zapier/mcp ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "zapier": { "command": "npx", "args": [ "-y", "@zapier/mcp" ], "env": { "ZAPIER_API_KEY": "${ZAPIER_API_KEY}" } } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "zapier": { "command": "npx", "args": [ "-y", "@zapier/mcp" ], "env": { "ZAPIER_API_KEY": "${ZAPIER_API_KEY}" } } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "zapier": { "command": "npx", "args": [ "-y", "@zapier/mcp" ], "env": { "ZAPIER_API_KEY": "${ZAPIER_API_KEY}" } } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "zapier": { "command": "npx", "args": [ "-y", "@zapier/mcp" ], "env": { "ZAPIER_API_KEY": "${ZAPIER_API_KEY}" } } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "npx", "args": [ "-y", "@zapier/mcp" ], "env": { "ZAPIER_API_KEY": "${ZAPIER_API_KEY}" } } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.zapier] command = "npx" args = [ "-y", "@zapier/mcp", ] env = { ZAPIER_API_KEY = "${ZAPIER_API_KEY}" } ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "zapier": { "command": { "path": "npx", "args": [ "-y", "@zapier/mcp" ] }, "env": { "ZAPIER_API_KEY": "${ZAPIER_API_KEY}" } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` Zapier doesn't ship a hosted HTTPS endpoint today. ChatGPT supports remote MCP servers only — to use this server in ChatGPT you'll need to deploy it to a public HTTPS URL first (e.g. via Cloudflare Workers or Vercel) or wait for an official remote build. ```none ``` ## OpenWeatherMap Real-time and forecast weather data via the OpenWeatherMap API. - URL: https://top-mcps.com/mcp/openweather - Source: https://github.com/szypetike/weather-mcp-server - Command: `npx -y weather-mcp-server` - Env: OPENWEATHER_API_KEY ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "openweather": { "command": "npx", "args": [ "-y", "weather-mcp-server" ], "env": { "OPENWEATHER_API_KEY": "${OPENWEATHER_API_KEY}" } } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell # export OPENWEATHER_API_KEY=your_openweather_key claude mcp add openweather -- npx -y weather-mcp-server ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "openweather": { "command": "npx", "args": [ "-y", "weather-mcp-server" ], "env": { "OPENWEATHER_API_KEY": "${OPENWEATHER_API_KEY}" } } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "openweather": { "command": "npx", "args": [ "-y", "weather-mcp-server" ], "env": { "OPENWEATHER_API_KEY": "${OPENWEATHER_API_KEY}" } } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "openweather": { "command": "npx", "args": [ "-y", "weather-mcp-server" ], "env": { "OPENWEATHER_API_KEY": "${OPENWEATHER_API_KEY}" } } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "openweather": { "command": "npx", "args": [ "-y", "weather-mcp-server" ], "env": { "OPENWEATHER_API_KEY": "${OPENWEATHER_API_KEY}" } } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "npx", "args": [ "-y", "weather-mcp-server" ], "env": { "OPENWEATHER_API_KEY": "${OPENWEATHER_API_KEY}" } } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.openweather] command = "npx" args = [ "-y", "weather-mcp-server", ] env = { OPENWEATHER_API_KEY = "${OPENWEATHER_API_KEY}" } ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "openweather": { "command": { "path": "npx", "args": [ "-y", "weather-mcp-server" ] }, "env": { "OPENWEATHER_API_KEY": "${OPENWEATHER_API_KEY}" } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` OpenWeatherMap doesn't ship a hosted HTTPS endpoint today. ChatGPT supports remote MCP servers only — to use this server in ChatGPT you'll need to deploy it to a public HTTPS URL first (e.g. via Cloudflare Workers or Vercel) or wait for an official remote build. ```none ``` ## Obsidian Read and write notes in your local Obsidian vault. - URL: https://top-mcps.com/mcp/obsidian - Source: https://github.com/MarkusPfundstein/mcp-obsidian - Command: `uvx mcp-obsidian` - Env: OBSIDIAN_API_KEY, OBSIDIAN_HOST ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "obsidian": { "command": "uvx", "args": [ "mcp-obsidian" ], "env": { "OBSIDIAN_API_KEY": "${OBSIDIAN_API_KEY}", "OBSIDIAN_HOST": "${OBSIDIAN_HOST}" } } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell # export OBSIDIAN_API_KEY=your_local_rest_api_key # export OBSIDIAN_HOST=127.0.0.1 claude mcp add obsidian -- uvx mcp-obsidian ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "obsidian": { "command": "uvx", "args": [ "mcp-obsidian" ], "env": { "OBSIDIAN_API_KEY": "${OBSIDIAN_API_KEY}", "OBSIDIAN_HOST": "${OBSIDIAN_HOST}" } } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "obsidian": { "command": "uvx", "args": [ "mcp-obsidian" ], "env": { "OBSIDIAN_API_KEY": "${OBSIDIAN_API_KEY}", "OBSIDIAN_HOST": "${OBSIDIAN_HOST}" } } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "obsidian": { "command": "uvx", "args": [ "mcp-obsidian" ], "env": { "OBSIDIAN_API_KEY": "${OBSIDIAN_API_KEY}", "OBSIDIAN_HOST": "${OBSIDIAN_HOST}" } } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "obsidian": { "command": "uvx", "args": [ "mcp-obsidian" ], "env": { "OBSIDIAN_API_KEY": "${OBSIDIAN_API_KEY}", "OBSIDIAN_HOST": "${OBSIDIAN_HOST}" } } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "uvx", "args": [ "mcp-obsidian" ], "env": { "OBSIDIAN_API_KEY": "${OBSIDIAN_API_KEY}", "OBSIDIAN_HOST": "${OBSIDIAN_HOST}" } } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.obsidian] command = "uvx" args = [ "mcp-obsidian", ] env = { OBSIDIAN_API_KEY = "${OBSIDIAN_API_KEY}", OBSIDIAN_HOST = "${OBSIDIAN_HOST}" } ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "obsidian": { "command": { "path": "uvx", "args": [ "mcp-obsidian" ] }, "env": { "OBSIDIAN_API_KEY": "${OBSIDIAN_API_KEY}", "OBSIDIAN_HOST": "${OBSIDIAN_HOST}" } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` Obsidian doesn't ship a hosted HTTPS endpoint today. ChatGPT supports remote MCP servers only — to use this server in ChatGPT you'll need to deploy it to a public HTTPS URL first (e.g. via Cloudflare Workers or Vercel) or wait for an official remote build. ```none ``` ## Figma Inspect Figma designs, components, and variables from an agent. - URL: https://top-mcps.com/mcp/figma - Source: https://github.com/figma/figma-mcp - Command: `npx -y @figma/mcp` - Env: FIGMA_ACCESS_TOKEN ### Claude Desktop — `claude_desktop_config.json` Paste under mcpServers. Fully quit and reopen Claude after editing. ```json { "mcpServers": { "figma": { "command": "npx", "args": [ "-y", "@figma/mcp" ], "env": { "FIGMA_ACCESS_TOKEN": "${FIGMA_ACCESS_TOKEN}" } } } } ``` ### Claude Code — `CLI or .mcp.json` Run from your repo. Commit .mcp.json to share with your team. ```shell # export FIGMA_ACCESS_TOKEN=figd_your_token claude mcp add figma -- npx -y @figma/mcp ``` ### Cursor — `.cursor/mcp.json` Global path: ~/.cursor/mcp.json. Reload window after editing. ```json { "mcpServers": { "figma": { "command": "npx", "args": [ "-y", "@figma/mcp" ], "env": { "FIGMA_ACCESS_TOKEN": "${FIGMA_ACCESS_TOKEN}" } } } } ``` ### VS Code — `.vscode/mcp.json` VS Code uses the "servers" key (not "mcpServers"). ```jsonc { "servers": { "figma": { "command": "npx", "args": [ "-y", "@figma/mcp" ], "env": { "FIGMA_ACCESS_TOKEN": "${FIGMA_ACCESS_TOKEN}" } } } } ``` ### Windsurf — `~/.codeium/windsurf/mcp_config.json` Open via Cascade → hammer icon → Configure. ```json { "mcpServers": { "figma": { "command": "npx", "args": [ "-y", "@figma/mcp" ], "env": { "FIGMA_ACCESS_TOKEN": "${FIGMA_ACCESS_TOKEN}" } } } } ``` ### Cline — `cline_mcp_settings.json` Open via the Cline sidebar → MCP Servers → Edit. ```json { "mcpServers": { "figma": { "command": "npx", "args": [ "-y", "@figma/mcp" ], "env": { "FIGMA_ACCESS_TOKEN": "${FIGMA_ACCESS_TOKEN}" } } } } ``` ### Continue — `~/.continue/config.json` Continue uses modelContextProtocolServers with a transport block. ```json { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "npx", "args": [ "-y", "@figma/mcp" ], "env": { "FIGMA_ACCESS_TOKEN": "${FIGMA_ACCESS_TOKEN}" } } } ] } } ``` ### Codex CLI — `~/.codex/config.toml` Codex uses TOML. Each server is a [mcp_servers.] subtable. ```shell # ~/.codex/config.toml [mcp_servers.figma] command = "npx" args = [ "-y", "@figma/mcp", ] env = { FIGMA_ACCESS_TOKEN = "${FIGMA_ACCESS_TOKEN}" } ``` ### Zed — `~/.config/zed/settings.json` Zed calls them "context_servers". Settings live-reload on save. ```jsonc { "context_servers": { "figma": { "command": { "path": "npx", "args": [ "-y", "@figma/mcp" ] }, "env": { "FIGMA_ACCESS_TOKEN": "${FIGMA_ACCESS_TOKEN}" } } } } ``` ### ChatGPT — `ChatGPT → Apps directory` Figma is also available in the official ChatGPT Apps directory — no manual setup, no Developer mode required. Open the app from the directory and grant access on first use. ```none ``` ## Canva Generate posters, slides, and social posts from a chat prompt — verified for 2026. - URL: https://top-mcps.com/mcp/canva ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Adobe Photoshop Edit images with Photoshop from a ChatGPT prompt — verified for 2026. - URL: https://top-mcps.com/mcp/adobe-photoshop ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Outlook Calendar Outlook Calendar — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/outlook-calendar ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Outlook Email Outlook Email — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/outlook-email ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## SharePoint SharePoint — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/sharepoint ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Teams Teams — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/teams ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Ace Knowledge Graph Ace Knowledge Graph — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/ace-knowledge-graph ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Ace Quiz Maker Ace Quiz Maker — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/ace-quiz-maker ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Adalo Adalo — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/adalo ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Adobe Acrobat Edit, convert, and compress PDFs inside ChatGPT — verified for 2026. - URL: https://top-mcps.com/mcp/adobe-acrobat ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Adobe Express Generate marketing creative with Adobe Express inside ChatGPT — verified for 2026. - URL: https://top-mcps.com/mcp/adobe-express ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Agentforce Sales Agentforce Sales — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/agentforce-sales ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## AI Voice Generator AI Voice Generator — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/ai-voice-generator ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Aiera Aiera — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/aiera ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Airtable Airtable — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/airtable ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Alpic Alpic — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/alpic ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## AnyPDF - Your PDF Converter AnyPDF - Your PDF Converter — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/anypdf---your-pdf-converter ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Apixel Apixel — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/apixel ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## ApplyBoard ApplyBoard — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/applyboard ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Asana Asana — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/asana ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Assessment Generator Assessment Generator — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/assessment-generator ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Atlassian Rovo Atlassian Rovo — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/atlassian-rovo ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Awesome Slides Awesome Slides — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/awesome-slides ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## B12 Website Generator B12 Website Generator — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/b12-website-generator ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Bankrate Bankrate — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/bankrate ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Base44 Base44 — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/base44 ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Beautiful.ai Beautiful.ai — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/beautiful-ai ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## BlueConic Solutions Finder BlueConic Solutions Finder — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/blueconic-solutions-finder ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## BluTranslate BluTranslate — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/blutranslate ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Botpress Botpress — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/botpress ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Box Box — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/box ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Brand24 Brand24 — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/brand24 ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Brex Brex — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/brex ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Carta CRM Carta CRM — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/carta-crm ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## CB Insights CB Insights — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/cb-insights ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Circleback Circleback — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/circleback ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Clay Clay — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/clay ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## ClickUp ClickUp — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/clickup ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Cloudinary Cloudinary — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/cloudinary ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Common Room Common Room — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/common-room ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Conductor Conductor — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/conductor ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Consensus Consensus — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/consensus ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Coursera Find and compare online courses inside ChatGPT — verified for 2026. - URL: https://top-mcps.com/mcp/coursera ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Crossbeam Crossbeam — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/crossbeam ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Cube Cube — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/cube ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Daloopa Daloopa — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/daloopa ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## DataCamp DataCamp — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/datacamp ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## DEWA DEWA — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/dewa ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Dex Dex — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/dex ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Docket Docket — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/docket ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Domotz (Preview) Domotz (Preview) — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/domotz--preview ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Dow Jones Factiva Dow Jones Factiva — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/dow-jones-factiva ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Dropbox Dropbox — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/dropbox ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Dropbox Dash Dropbox Dash — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/dropbox-dash ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## edX edX — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/edx ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Egnyte Egnyte — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/egnyte ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Enhancv Enhancv — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/enhancv ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Ethos Ethos — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/ethos ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## FactSet AI-Ready Data FactSet AI-Ready Data — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/factset-ai-ready-data ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Formbyte Formbyte — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/formbyte ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Fotocasa Fotocasa — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/fotocasa ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Fyxer Fyxer — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/fyxer ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Gamma Gamma — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/gamma ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Genspark AI Slides Genspark AI Slides — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/genspark-ai-slides ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## GoDaddy GoDaddy — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/godaddy ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Granola Granola — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/granola ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Habitify Habitify — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/habitify ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Harmonic Harmonic — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/harmonic ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Heepsy Influencer Search Heepsy Influencer Search — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/heepsy-influencer-search ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Hex Hex — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/hex ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## HeyGen HeyGen — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/heygen ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## HighLevel HighLevel — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/highlevel ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## HubSpot HubSpot — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/hubspot ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Hugging Face Hugging Face — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/hugging-face ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Imovirtual Imovirtual — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/imovirtual ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Indeed Indeed — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/indeed ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Internshala Internshala — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/internshala ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## invideo invideo — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/invideo ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## italki language learning italki language learning — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/italki-language-learning ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Jam Jam — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/jam ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Jotform Jotform — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/jotform ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Klaviyo Klaviyo — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/klaviyo ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Kraken Kraken — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/kraken ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## LeapScholar LeapScholar — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/leapscholar ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Linear MCP Server Linear MCP Server — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/linear-mcp-server ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Linkly URL Shortener Linkly URL Shortener — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/linkly-url-shortener ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## LONA Trading Assistant LONA Trading Assistant — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/lona-trading-assistant ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Lovable Lovable — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/lovable ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Lucid Lucid — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/lucid ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Lusha Lusha — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/lusha ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Manus Manus — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/manus ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## MarcoPolo MarcoPolo — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/marcopolo ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Mem Mem — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/mem ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Mixpanel Mixpanel — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/mixpanel ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Monday.com Monday.com — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/monday-com ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## MotherDuck MotherDuck — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/motherduck ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## MT Newswires MT Newswires — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/mt-newswires ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Namecheap Namecheap — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/namecheap ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Neon Postgres Neon Postgres — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/neon-postgres ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Netlify Netlify — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/netlify ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Network Solutions Network Solutions — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/network-solutions ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Norton Norton — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/norton ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Otomoto Otomoto — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/otomoto ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Outliner Outliner — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/outliner ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## PayPal PayPal — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/paypal ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Pazy Pazy — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/pazy ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Pendo Pendo — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/pendo ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## PitchBook PitchBook — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/pitchbook ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Preply Language Tutor Finder Preply Language Tutor Finder — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/preply-language-tutor-finder ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Pylon Pylon — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/pylon ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Quartr Quartr — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/quartr ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Quicknode Quicknode — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/quicknode ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Quizlet Turn notes and prompts into flashcards and study sets — verified for 2026. - URL: https://top-mcps.com/mcp/quizlet ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Ranked AI Ranked AI — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/ranked-ai ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Readwise Readwise — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/readwise ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Remitly Remitly — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/remitly ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Replit Generate and deploy code on Replit from inside ChatGPT — verified for 2026. - URL: https://top-mcps.com/mcp/replit ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Retell AI Retell AI — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/retell-ai ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## S&P Global S&P Global — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/s-p-global ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## SciSpace SciSpace — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/scispace ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Scite Scite — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/scite ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Scrimba Scrimba — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/scrimba ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Semrush Semrush — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/semrush ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Serpstat Serpstat — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/serpstat ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Shutterstock Shutterstock — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/shutterstock ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Sider Recorder & Transcriber Sider Recorder & Transcriber — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/sider-recorder---transcriber ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Sider Scholar Sider Scholar — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/sider-scholar ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Skillshare Skillshare — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/skillshare ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## SlidesGPT SlidesGPT — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/slidesgpt ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Smallpdf Smallpdf — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/smallpdf ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Spaceship Spaceship — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/spaceship ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Speechify Speechify — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/speechify ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Statsig Statsig — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/statsig ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Sticklight Sticklight — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/sticklight ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Streak Streak — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/streak ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Strive PDF Generator Strive PDF Generator — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/strive-pdf-generator ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## SubscriptionFlow SubscriptionFlow — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/subscriptionflow ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Third Bridge Third Bridge — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/third-bridge ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## ThoughtSpot Spotter ThoughtSpot Spotter — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/thoughtspot-spotter ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## TickerSage TickerSage — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/tickersage ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Tuio Tuio — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/tuio ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Ubersuggest Ubersuggest — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/ubersuggest ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Udemy Udemy — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/udemy ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Upwork Upwork — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/upwork ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## VEED Fabric VEED Fabric — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/veed-fabric ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Vercel Vercel — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/vercel ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## VibeProspecting VibeProspecting — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/vibeprospecting ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Wayground Wayground — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/wayground ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Wednesday.app Wednesday.app — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/wednesday-app ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Whimsical Whimsical — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/whimsical ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Wix Generate working websites from text prompts — verified for 2026. - URL: https://top-mcps.com/mcp/wix ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Wrike Wrike — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/wrike ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Zoom Zoom — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/zoom ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## ZoomInfo ZoomInfo — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/zoominfo ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## AbhiBus AbhiBus — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/abhibus ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## ADAC Mietwagen ADAC Mietwagen — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/adac-mietwagen ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## ALL Accor ALL Accor — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/all-accor ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Almosafer.com Almosafer.com — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/almosafer-com ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Apple Music Curate Apple Music playlists and stations inside ChatGPT — verified for 2026. - URL: https://top-mcps.com/mcp/apple-music ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## artue artue — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/artue ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Atlys Atlys — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/atlys ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## AutoScout24 AutoScout24 — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/autoscout24 ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Autotrader Autotrader — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/autotrader ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Autovit.ro Autovit.ro — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/autovit-ro ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Backstage Backstage — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/backstage ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Bible Bible — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/bible ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Booking.com Search and compare hotels conversationally — verified for 2026. - URL: https://top-mcps.com/mcp/booking-com ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Busbud Busbud — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/busbud ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Buson Buson — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/buson ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Cafe24 Cafe24 — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/cafe24 ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Calorie Tracker Guide Calorie Tracker Guide — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/calorie-tracker-guide ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## CalorieCam CalorieCam — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/caloriecam ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## CARS24 CARS24 — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/cars24 ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## coches.net coches.net — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/coches-net ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Cottages Cottages — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/cottages ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Cowboy Model Finder Cowboy Model Finder — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/cowboy-model-finder ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Cruise Critic Cruise Critic — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/cruise-critic ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## DoneDeal DoneDeal — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/donedeal ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## eDreams eDreams — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/edreams ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Faire Wholesale Faire Wholesale — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/faire-wholesale ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## FareHarbor FareHarbor — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/fareharbor ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Fever Event Discovery Fever Event Discovery — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/fever-event-discovery ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## FINN FINN — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/finn ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Flight Network Flight Network — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/flight-network ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Flixor Flixor — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/flixor ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## GetYourGuide GetYourGuide — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/getyourguide ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## hepsiemlak hepsiemlak — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/hepsiemlak ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Hyatt Hyatt — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/hyatt ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## idealista idealista — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/idealista ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Insight Timer Insight Timer — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/insight-timer ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## ixigo ixigo — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/ixigo ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Kleinanzeigen Kleinanzeigen — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/kleinanzeigen ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Klook Klook — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/klook ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## komoot komoot — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/komoot ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Krikey AI Animation Krikey AI Animation — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/krikey-ai-animation ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Lambus Lambus — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/lambus ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Le Parisien Le Parisien — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/le-parisien ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Loft Loft — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/loft ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## MakeMyTrip MakeMyTrip — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/makemytrip ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Malwarebytes Malwarebytes — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/malwarebytes ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## MangaBoom MangaBoom — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/mangaboom ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Milanuncios Milanuncios — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/milanuncios ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## motos.net motos.net — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/motos-net ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## MyRegistry.com MyRegistry.com — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/myregistry-com ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Omio Omio — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/omio ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Penny Penny — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/penny ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Priceline Priceline — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/priceline ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## QuintoAndar QuintoAndar — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/quintoandar ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Raptive Food Raptive Food — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/raptive-food ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## realestate.com.au realestate.com.au — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/realestate-com-au ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Recorrido Recorrido — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/recorrido ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## redBus redBus — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/redbus ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Redfin Redfin — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/redfin ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## RIFO Home RIFO Home — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/rifo-home ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Rome2Rio Rome2Rio — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/rome2rio ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Shazam Shazam — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/shazam ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Skyscanner Skyscanner — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/skyscanner ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Softonic Softonic — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/softonic ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## SparkSpot SparkSpot — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/sparkspot ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Spotify Build playlists and discover music inside ChatGPT — verified for 2026. - URL: https://top-mcps.com/mcp/spotify ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Standvirtual Standvirtual — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/standvirtual ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Systembolaget Systembolaget — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/systembolaget ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Tarot Tarot — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/tarot ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## tiket.com tiket.com — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/tiket-com ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Tillys Tillys — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/tillys ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## TourRadar TourRadar — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/tourradar ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Tripadvisor Tripadvisor — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/tripadvisor ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## trivago trivago — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/trivago ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## TUI TUI — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/tui ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Turo Turo — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/turo ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Viator Viator — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/viator ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Vio.com Vio.com — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/vio-com ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## WeatherPromise WeatherPromise — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/weatherpromise ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Wikiloc Wikiloc — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/wikiloc ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Wyndham Hotels & Resorts Wyndham Hotels & Resorts — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/wyndham-hotels---resorts ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Yahoo! JAPAN Shopping Yahoo! JAPAN Shopping — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/yahoo--japan-shopping ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Zen Shopping Zen Shopping — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/zen-shopping ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Zola Zola — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/zola ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Zumba Zumba — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/zumba ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## 아모레몰 AMORE MALL 아모레몰 AMORE MALL — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/amore-mall ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## 요기요 요기요 — official ChatGPT Apps directory listing, verified for 2026. - URL: https://top-mcps.com/mcp/app ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Expedia Plan flights and trips conversationally inside ChatGPT — verified for 2026. - URL: https://top-mcps.com/mcp/expedia ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Zillow Search for homes conversationally with live listing data — verified for 2026. - URL: https://top-mcps.com/mcp/zillow ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## DoorDash Order food and groceries through ChatGPT — verified for 2026. - URL: https://top-mcps.com/mcp/doordash ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Uber Book rides and Uber Eats orders inside ChatGPT — verified for 2026. - URL: https://top-mcps.com/mcp/uber ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## SeatGeek Find event tickets with view-quality and price filters — verified for 2026. - URL: https://top-mcps.com/mcp/seatgeek ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Target Build Target carts and find gift suggestions inside ChatGPT — verified for 2026. - URL: https://top-mcps.com/mcp/target ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Angi Find vetted home pros and request quotes inside ChatGPT — verified for 2026. - URL: https://top-mcps.com/mcp/angi ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## Khan Academy Interactive lessons and practice from Khan Academy inside ChatGPT — verified for 2026. - URL: https://top-mcps.com/mcp/khan-academy ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## AllTrails Find hiking, biking, and running routes inside ChatGPT — verified for 2026. - URL: https://top-mcps.com/mcp/alltrails ### ChatGPT — `ChatGPT → Apps directory` ```none ``` ## MyFitnessPal Log meals and track macros inside ChatGPT — verified for 2026. - URL: https://top-mcps.com/mcp/myfitnesspal ### ChatGPT — `ChatGPT → Apps directory` ```none ```