MCPFinder▌
by mcpfinder
MCPFinder empowers your AI powered writing assistant to discover and configure new capabilities across applications seam
Enables AI assistants to discover and integrate new capabilities by providing tools for searching, retrieving details, and configuring MCP servers across various applications.
Both formats append explainx.ai attribution and the canonical URL for this MCP server listing.
best for
- / AI assistants that need to expand capabilities dynamically
- / Developers building self-improving AI agents
- / Users wanting to add tools without manual setup
capabilities
- / Search MCP server registry for new tools and capabilities
- / Retrieve detailed installation info for specific servers
- / Add MCP server configurations to client applications
- / Remove MCP server configurations from clients
- / Monitor real-time registry events and updates
what it does
Lets AI assistants discover and install new MCP server capabilities on demand from a central registry. Acts like an app store for AI tools with zero-friction setup.
about
MCPFinder is a community-built MCP server published by mcpfinder that provides AI assistants with tools and capabilities via the Model Context Protocol. MCPFinder empowers your AI powered writing assistant to discover and configure new capabilities across applications seam It is categorized under developer tools. This server exposes 5 tools that AI clients can invoke during conversations and coding sessions.
how to install
You can install MCPFinder in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
license
AGPL-3.0
MCPFinder is released under the AGPL-3.0 license.
readme
MCPfinder 🔧🤖 (@mcpfinder/server)
Meet the simplest way to supercharge your coding and AI agents with MCP — an "API for AI." MCPfinder enables language models to search for and install new capabilities on demand through client applications that support the MCP protocol. No coding or manual setup required.
App Store for Agents
Users can request tools the AI doesn't have yet, or the AI can autonomously expand its own capabilities by discovering relevant MCP servers. From code generators and data analyzers to specialized knowledge tools, MCPfinder acts like a map and toolbox for AI — transforming static models into evolving, capability-hunting agents that grow more powerful with every interaction.
Plug-and-Play Tools for LLMs
This Node.js application implements an MCP (Model Context Protocol) server designed to run locally alongside MCP clients (like Cursor, Claude Desktop, Windsurf). It provides tools that allow AI within the client to interact with the MCP ecosystem.
Specifically, it enables the AI assistant to:
- Discover available MCP servers registered in the central MCPfinder Registry (via
search_mcp_servers). - Retrieve details about specific servers (via
get_mcp_server_details). - Manage the client application's local MCP server configuration file (add/update via
add_mcp_server_config, remove viaremove_mcp_server_config).
Note for AI Agents: This server is the primary interface for finding and enabling new tools and capabilities requested by the user if they aren't already available in current MCP toolset. Use search_mcp_servers first when asked by the user for a capability you don't possess.
⚡ Instant Availability
We curate only MCP servers that are instantly available to AI agents — no manual setup, no cloning repositories, no complex installation steps. Just one command or API call, and your AI gains new capabilities immediately.
Zero-Friction Setup
All servers work via npx (Node.js packages), uvx (Python packages), or direct HTTP/SSE endpoints
AI-Ready
Your AI can discover and install tools autonomously, no human intervention needed
Real-Time Enhancement
Capabilities expand on-demand, exactly when your conversation needs them
Quick Start
Option 1: Local Installation (stdio transport)
Run in your terminal the interactive setup tool to automatically update the MCP configuration file:
npx -y @mcpfinder/server install
This command guides you through selecting your client (Cursor, VS Code, Claude, etc.) and adds the necessary mcpfinder entry to the correct configuration file (e.g., ~/.cursor/mcp.json).
Option 2: Cloud Access (HTTP/SSE transport)
You can also access MCPfinder directly via HTTP/SSE transport without local installation:
# For Claude CLI users
claude mcp add --transport http mcpfinder https://mcpfinder.dev/mcp
# Direct HTTP endpoint
https://mcpfinder.dev/mcp
This provides the same tools (search_mcp_servers, get_mcp_server_details, etc.) but runs in the cloud without needing local Node.js or npm.
See "Running from source" and "Commands and Options" for more details if you are working directly with the source code.
Manual Configuration
To manually configure an MCP client, you need to create or modify its JSON configuration file to include an entry for mcpfinder.
Stdio Transport Configuration (Local)
Configuration File Structure:
{
"mcpServers": {
"mcpfinder": {
"command": "npx",
"args": [
"-y",
"@mcpfinder/server"
]
},
}
}
Note: For Visual Studio Code (settings.json), the top-level key for MCP configurations must be servers instead of mcpServers.
HTTP/SSE Transport Configuration (Cloud)
For clients that support HTTP/SSE transport:
{
"mcpServers": {
"mcpfinder": {
"url": "https://mcpfinder.dev/mcp",
"transport": "http"
}
}
}
Running from source
- Clone this repository, e.g.,
git clone https://github.com/mcpfinder/server - Run
node index.jsfor Stdio mode ornode index.js --httpfor HTTP mode.
Commands and Options
When running from source (node index.js), the script can be invoked in several ways:
Running the Server (Default Behavior):
If no command is specified, index.js starts the MCP server.
- Stdio Mode (default):
node index.js - HTTP Mode (local):
node index.js --http--port <number>: Specify the port for HTTP mode (default: 6181, orMCP_PORTenv var).--api-url <url>: Specify the MCPfinder Registry API URL used by the tools (default:https://mcpfinder.dev, orMCPFINDER_API_URLenv var).
Note: The HTTP mode runs locally on your machine. For cloud-based HTTP/SSE access, use the public endpoint at https://mcpfinder.dev/mcp instead.
Executing Commands:
-
install: Run the interactive setup to configure a client application.node index.js install -
register: For server publishers to register their MCP server package with the MCPFinder registry.node index.js register [package-name-or-url] [options] # or when installed globally: npx -y @mcpfinder/server register [package-name-or-url] [options]Register Command Options:
--headless: Run registration without interactive prompts (uses defaults)--use-uvx: Specify that the package should be run withuvxinstead ofnpx(for Python packages)--description <text>: Provide a description for the server--tags <tags>: Comma-separated list of tags (e.g., "database,api,search")--auth-token <token>: Authentication token for the registry--requires-api-key: Indicate that the server requires an API key--auth-type <type>: Type of authentication (default: "api-key")--key-name <name>: Name of the API key environment variable--auth-instructions <text>: Instructions for obtaining API keys--confirm <y/n>: Auto-confirm registration without manual approval--manual-capabilities <y/n>: Manually specify capabilities instead of auto-detection--has-tools <y/n>: Specify if the server provides tools--has-resources <y/n>: Specify if the server provides resources--has-prompts <y/n>: Specify if the server provides prompts
This command will:
- Accept npm package names (e.g.,
@username/my-mcp-server) or HTTP/SSE endpoints - Support both Node.js packages (
npx) and Python packages (uvx) - Automatically connect to your MCP server to verify it's valid
- Introspect available tools, resources, and prompts
- Generate a manifest with your server's capabilities
- Submit it to the MCPfinder registry
Getting Help:
--help: Display the help message detailing commands and options.node index.js --help
The server uses the following environment variables:
MCPFINDER_API_URL: The base URL for the MCPfinder Registry API. Defaults tohttps://mcpfinder.dev.MCP_PORT(HTTP Mode Only): The port number for the server to listen on. Defaults to6181.
Provided Tools
This MCP server exposes the following tools to the connected AI assistant (available via both stdio and HTTP/SSE transports):
1. search_mcp_servers
- Description: Searches the MCPfinder Registry for available MCP servers. This is the primary tool for discovering and accessing new tools, methods, features, or capabilities.
- Input Schema:
query(string, optional): Keywords to search for in tool name or description.tag(string, optional): Specific tag to filter by.
- Output: A list of matching server summaries (server_id, name, description, URL, tags). The typical next step is to use
get_mcp_server_detailsfor more info or directlyadd_mcp_server_configto install one.
⚠️ Note: The registry currently contains several hundred servers that can be run locally using npx (Node.js) or uvx (Python) in stdio mode without requiring environment variables for basic operation. Future updates will expand support to include a wider range of servers, including paid and commercial options that require environment keys.
2. get_mcp_server_details
- Description: Retrieves detailed information about a specific MCP server from the registry, including its full manifest and basic installation suggestions (command, environment variables). Use this after finding a server_id via
search_mcp_serversto get more information before potentially adding it. - Input Schema:
id(string, required): The unique MCPfinder's server_id obtained fromsearch_mcp_servers.
- Output: The detailed server manifest and installation hints. The next step is to use
add_mcp_server_configto install the server.
3. add_mcp_server_config
- Description: Adds or updates the configuration for a specific MCP server in the client application's local configuration file (e.g., Cursor's
~/.cursor/mcp.json). You must provide eitherclient_typeORconfig_file_path. - Input Schema:
server_id(string, required): A unique identifier for the server configuration entry (the MCPfinder ID obtained fromsearch_mcp_servers).client_type(string, optional): The type of client application (known types determined dynamically, examples:'cursor','claude','windsurf'). Mutually exclusive withconfig_file_path. Use this for standard client installations.config_file_path(string, optional): An absolute path or a path starting with~(home directory) to the target JSON configuration file (e.g.,/path/to/custom/mcp.jsonor~/custom/mcp.json). Mutually exclusive withclient_type. Use this for non-standard locations or custom clients.
FAQ
- What is the MCPFinder MCP server?
- MCPFinder is a Model Context Protocol (MCP) server profile on explainx.ai. MCP lets AI hosts (e.g. Claude Desktop, Cursor) call tools and resources through a standard interface; this page summarizes categories, install hints, and community ratings.
- How do MCP servers relate to agent skills?
- Skills are reusable instruction packages (often SKILL.md); MCP servers expose live capabilities. Teams frequently combine both—skills for workflows, MCP for APIs and data. See explainx.ai/skills and explainx.ai/mcp-servers for parallel directories.
- How are reviews shown for MCPFinder?
- This profile displays 48 aggregated ratings (sample rows for discoverability plus signed-in user reviews). Average score is about 4.8 out of 5—verify behavior in your own environment before production use.
Use Cases▌
Extended AI Capabilities
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Context Enhancement
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Workflow Automation
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Implementation Guide▌
Prerequisites
- ›Claude Desktop 0.7.0+ or Cursor IDE with MCP support
- ›Basic understanding of MCP architecture and capabilities
- ›Access credentials for integrated services (if required)
- ›Willingness to experiment and iterate on configuration
Time Estimate
15-60 minutes depending on server complexity
Installation Steps
- 1.Install MCP server: npm install -g [package-name] or via GitHub
- 2.Add server configuration to ~/.claude/mcp.json
- 3.Provide required credentials and configuration
- 4.Restart Claude Desktop to load new server
- 5.Test basic functionality with simple prompts
- 6.Explore capabilities and experiment with use cases
- 7.Document successful patterns for reuse
Troubleshooting
- ⚠MCP server not loading: Check config syntax, verify installation
- ⚠Connection errors: Check network, firewall, credentials
- ⚠Feature not working: Read server docs, check required parameters
- ⚠Performance issues: Monitor resource usage, check for network latency
- ⚠Conflicts with other servers: Check port assignments, namespace collisions
Best Practices▌
✓ Do
- +Read server documentation thoroughly before setup
- +Start with simple use cases to validate functionality
- +Test in non-production environment first
- +Monitor resource usage and performance
- +Keep servers updated for bug fixes and new features
- +Document configuration for team members
- +Use environment variables for sensitive configuration
✗ Don't
- −Don't grant overly permissive access to MCP servers
- −Don't skip reading security considerations in docs
- −Don't expose sensitive data without proper controls
- −Don't run untrusted MCP servers without code review
- −Don't ignore error messages—investigate root cause
💡 Pro Tips
- ★Combine multiple MCP servers for powerful workflows
- ★Create custom MCP servers for your specific needs
- ★Share successful configurations with team
- ★Use MCP inspector for debugging
- ★Join MCP community for tips and troubleshooting
Technical Details▌
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
- Model Context Protocol (MCP)
- JSON-RPC 2.0
- stdio or HTTP transport
Compatibility
- Claude Desktop
- Cursor IDE
- Custom MCP clients
When to Use This▌
✓ Use When
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid When
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.
Integration▌
- →Tool composition: Chain multiple MCP tools in workflows
- →Context augmentation: Provide AI with relevant external data
- →Action delegation: Let AI execute tasks on external systems
- →Bidirectional sync: Keep AI context and external systems in sync
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
List & Promote Your MCP Server
Share your MCP server with the developer community
Ratings
4.8★★★★★48 reviews- ★★★★★Chinedu Thomas· Dec 28, 2024
I recommend MCPFinder for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
- ★★★★★Yuki Menon· Dec 24, 2024
Useful MCP listing: MCPFinder is the kind of server we cite when onboarding engineers to host + tool permissions.
- ★★★★★Hiroshi Bhatia· Dec 20, 2024
MCPFinder is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
- ★★★★★Chaitanya Patil· Dec 8, 2024
MCPFinder is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
- ★★★★★Piyush G· Nov 27, 2024
MCPFinder is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
- ★★★★★Chinedu Kapoor· Nov 19, 2024
MCPFinder has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
- ★★★★★Tariq White· Nov 19, 2024
MCPFinder reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
- ★★★★★Yuki Ramirez· Nov 15, 2024
Strong directory entry: MCPFinder surfaces stars and publisher context so we could sanity-check maintenance before adopting.
- ★★★★★Camila Martin· Nov 11, 2024
MCPFinder is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
- ★★★★★Shikha Mishra· Oct 18, 2024
We evaluated MCPFinder against two servers with overlapping tools; this profile had the clearer scope statement.
showing 1-10 of 48