Stop Searching. Start Trusting.
The curated directory of MCP servers, vetted for security, efficiency, and quality.
Tired of the MCP "Marketplace" Chaos?
We built MCPScout.ai to solve the ecosystems biggest pain points.
No Insecure Dumps
We manually analyze every server for basic security flaws.
Easy Setup
Our gotcha notes warn you about complex setups.
Avoid "Token Hogs"
We estimate token costs for cost-effective agents.
Products, Not Demos
We filter out "Hello World" demos.
Vetted Servers(8554)
mcp
by Cronos402
A Model Context Protocol (MCP) server providing x402 payment support for the Cronos blockchain, enabling payment-gated tool execution and USDC.e/CRO payments.
A Model Context Protocol (MCP) server providing x402 payment support for the Cronos blockchain, enabling payment-gated tool execution and USDC.e/CRO payments.
Setup Requirements
- ⚠️Requires a PostgreSQL database (supports Neon HTTP or standard `postgres` driver).
- ⚠️The server requires `BETTER_AUTH_SECRET`, `DATABASE_URL`, `GITHUB_CLIENT_ID`, and `GITHUB_CLIENT_SECRET` environment variables to be set (as per `src/env.ts` validation).
- ⚠️Automated USDC.e payments are currently prevented in the `CronosPaymentStrategy` as it awaits secure wallet integration (e.g., MetaMask, WalletConnect). Users must interact manually for now via the web interface.
Verified SafeView Analysis
mcp-servers
by lamdt1
An MCP server that provides tools for AI agents to interact with a music API (ZingMp3) to search for songs, fetch lyrics, streams, and artist/album information.
An MCP server that provides tools for AI agents to interact with a music API (ZingMp3) to search for songs, fetch lyrics, streams, and artist/album information.
Setup Requirements
- ⚠️Requires `npm install` and `npm run build` to compile TypeScript before running the compiled output. The `mp3-server.js` script attempts to automate this but it's a prerequisite.
- ⚠️The core API client relies on fragile web scraping techniques to obtain cookies from `zingmp3.vn` and interacts with unofficial endpoints, making it highly susceptible to breaking if `zingmp3.vn` changes its website structure or implements anti-scraping measures.
- ⚠️The `MP3_API_BASE_URL` environment variable, mentioned in the README for overriding the API base URL, is not actually used by the provided `Mp3ApiClient` source code, which hardcodes `https://zingmp3.vn`.
Review RequiredView Analysis
mcp-sentiment
by JoAbyssinia
Provides a sentiment analysis API, capable of being integrated into larger AI agent systems or directly used via a web interface.
Provides a sentiment analysis API, capable of being integrated into larger AI agent systems or directly used via a web interface.
Setup Requirements
- ⚠️Requires `textblob` Python library (`pip install textblob`).
- ⚠️Requires `gradio` Python library (`pip install gradio`).
Verified SafeView Analysis
mcp-nevent
by iamsamuelfraga
An MCP server providing tools for managing users, marketing campaigns, and event lineups in the Nevent platform.
An MCP server providing tools for managing users, marketing campaigns, and event lineups in the Nevent platform.
Setup Requirements
- ⚠️Requires 'NEVENT_JWT_TOKEN' environment variable to authenticate with the Nevent API; the server will exit if it's not set.
- ⚠️Users need to obtain the 'NEVENT_JWT_TOKEN' by logging into the Nevent admin panel and generating an API token with appropriate permissions.
- ⚠️Local setup requires building the TypeScript project (`npm run build`) before execution and providing the correct path to the compiled 'dist/index.js' file.
Verified SafeView Analysis
crawler-mcp-server
by osins
An MCP server providing web crawling, browser automation, and content extraction capabilities with support for multiple output formats and LLM integration.
An MCP server providing web crawling, browser automation, and content extraction capabilities with support for multiple output formats and LLM integration.
Setup Requirements
- ⚠️Requires Python 3.8 or higher.
- ⚠️Requires Playwright browser installation (`python -m playwright install chromium --with-deps`) after pip installation, which involves downloading a browser binary and its system dependencies.
- ⚠️LLM integration (using `litellm` with `openai/gpt-4o-mini`) implicitly requires an `OPENAI_API_KEY` or a compatible API key to be set in the environment variables for full functionality.
Verified SafeView Analysis
lookFor
by egg-breads
This application functions as a Model Context Protocol (MCP) server, exposing tools for fetching weather forecasts and parking zone information, primarily intended for use by an AI agent.
This application functions as a Model Context Protocol (MCP) server, exposing tools for fetching weather forecasts and parking zone information, primarily intended for use by an AI agent.
Setup Requirements
- ⚠️Requires `gov.share.api.key` to access the eShare public data portal. It is currently hardcoded in `application.yml` but should be managed securely.
- ⚠️The `RestClient` in `ConnectConfig` is configured with `gov.share.api.host` (eshare.go.kr), which conflicts with the weather forecast service (`ExamWeatherServiceImp`) expecting `api.weather.gov`. The weather forecast tool will likely fail unless the RestClient configuration is modified or a separate RestClient bean for api.weather.gov is provided.
- ⚠️While the server runs independently, its full intended functionality as an MCP server implies integration with an LLM like Ollama, as suggested by the `compose.yaml`.
Verified SafeView Analysis
expense-tracker-mcp-server
by Sudhanvaha
Provides a Model Context Protocol (MCP) server for tracking personal expenses, integrated with Claude Desktop for natural language management.
Provides a Model Context Protocol (MCP) server for tracking personal expenses, integrated with Claude Desktop for natural language management.
Setup Requirements
- ⚠️Requires Python 3.10 or higher.
- ⚠️Requires 'uv' package manager for installation and execution.
- ⚠️Requires Claude Desktop application for interaction (Claude Pro subscription is needed for direct remote server access; Free plan works with local or proxy setups).
Verified SafeView Analysis
PyBun
by VOID-TECHNOLOGY-INC
Programmatic interaction with the PyBun CLI for automation or AI agent integration, serving as a backend for system-level Python tooling.
Programmatic interaction with the PyBun CLI for automation or AI agent integration, serving as a backend for system-level Python tooling.
Setup Requirements
- ⚠️Requires `uv` or `pip` to be available in PATH for virtual environment management.
- ⚠️System utilities like `curl`, `tar`, `sha256sum`/`shasum` are required for downloading and verifying Python runtimes.
- ⚠️Default Python versions supported are 3.9, 3.10, 3.11, 3.12; older/unlisted versions may require manual setup or fail.
Review RequiredView Analysis
Travel-Planning-Assistant-using-FastMCP
by SayamAlt
An AI travel assistant that uses an LLM agent and modular MCP servers to provide real-time information for flight, hotel, weather, places, and timezone during trip planning.
An AI travel assistant that uses an LLM agent and modular MCP servers to provide real-time information for flight, hotel, weather, places, and timezone during trip planning.
Setup Requirements
- ⚠️Requires multiple paid API keys for various services (OpenAI, Amadeus, OpenWeatherMap, Foursquare, RapidAPI).
- ⚠️Requires Python 3.10 or higher.
- ⚠️Requires manually starting 5 separate MCP server processes (flights_mcp.py, hotels_mcp.py, weather_mcp.py, places_mcp.py, math_mcp.py) before running the main Streamlit application.
Verified SafeView Analysis
Document-handler
by sendsta
The MCP server provides document parsing, OCR, and advanced analytical tools to extract key information (requirements, deadlines, contacts, evaluation criteria) from tender documents for the tri-tender system.
The MCP server provides document parsing, OCR, and advanced analytical tools to extract key information (requirements, deadlines, contacts, evaluation criteria) from tender documents for the tri-tender system.
Setup Requirements
- ⚠️Requires system dependencies like pandoc, poppler-utils, tesseract-ocr, and LibreOffice Writer for full functionality (especially OCR and document conversion).
- ⚠️Python 3.10+ is required.
- ⚠️FastMCP Cloud deployment requires setting an entrypoint (`server.py:mcp`).
Verified SafeView Analysis
install-claude-mcp-filesystem
by ianiver9
Automates the setup of a local filesystem server for Claude Desktop on Windows, enabling the AI to securely access and manage local files.
Automates the setup of a local filesystem server for Claude Desktop on Windows, enabling the AI to securely access and manage local files.
Setup Requirements
- ⚠️Requires Windows 10 or 11
- ⚠️Requires Administrator privileges to run the PowerShell script
- ⚠️Requires `Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser` to be set before execution
- ⚠️Default configuration grants Claude access to the entire `C:\` drive
Verified SafeView Analysis
xifan-mcp-server-list
by admin-e2ec
This repository serves as a curated list and directory of resources related to the ModelContextProtocol (MCP), including servers, tools, and related research papers.
This repository serves as a curated list and directory of resources related to the ModelContextProtocol (MCP), including servers, tools, and related research papers.