Discover Exceptional MCP Servers
mcp server index for souls
johnnyclem
README
<img src="./public/logo.png" width="68" alt="mcpsvr logo"/>
Discover Exceptional MCP Servers
MCPSvr is an innovative spin-off project from 5ire designed to host a community-driven directory of MCP servers. This platform empowers developers to discover exceptional tools while offering a streamlined process for sharing their own MCP server creations.
🚀 The servers here enable MCP clients like 5ire to install and run directly.
https://github.com/user-attachments/assets/3d1ec8db-2041-4f2d-b72c-eb8ae17ab31c
Contribution Guidelines
All registered MCP servers are maintained in the centralized repository located at /public/servers.json
. Developers can submit new server configurations through GitHub pull requests (PRs).
Configuration Schema
{
"name": "Server Identifier",
"key": "Unique alphanumeric identifier",
"description": "Concise implementation overview",
"command": "Execution environment specifier (e.g., uvx, npx, python, node)",
"args": [
"Required runtime arguments"
],
"env": {
"ENVIRONMENT_VARIABLE": "Value assignment"
},
"homepage": "Official documentation URL"
}
Best Practices
- Field Organization: Maintain alphabetical ordering for configuration keys
- Identifier Requirements:
- Must be a unique alphanumeric string starting with a letter
- Strictly prohibits numeric prefixes
- Metadata Handling:
- Optional
name
field defaults tokey
display value - Environment variables and homepage URLs are supplementary fields
- Optional
User-Defined Parameters
For interactive parameter requirements, adhere to the standardized format:
{{paramName@paramType::paramDescription}}
This convention enables parameter extraction and presentation in client applications.
Example Implementation:
{
"name": "File System Access Control",
"key": "FileSystem",
"command": "npx",
"description": "Enforces directory-level operation restrictions through specified arguments",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"{{dirs@list::directories you about to access. Include trailing slash}}"
],
"homepage": "https://github.com/modelcontextprotocol/servers"
}
Parameter Extraction:
{
"name": "dirs",
"type": "list",
"description": "Directories you about to access. Include trailing slash"
}
Field Constraints:
paramName
must be unique within the server configuration- Supported data types include string,list and number,make sure to use the right type!
- Descriptive text remains optional
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
MCP Package Docs Server
Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.
Claude Code MCP
An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.
@kazuph/mcp-taskmanager
Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.
Linear MCP Server
Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.
Jira-Context-MCP
MCP server to provide Jira Tickets information to AI coding agents like Cursor

Linear MCP Server
A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.