Share MCP - Model Context Protocol 导航站
Share MCP 是一个专注于 Model Context Protocol (MCP) 的导航站点。它提供了丰富的 MCP 相关资源、工具和服务的分类展示,帮助开发者快速找到所需的 MCP 解决方案。
Overview
Share MCP is a navigation site focused on the Model Context Protocol (MCP). It provides a rich display of MCP-related resources, tools, and services, helping developers quickly find the required MCP solutions.
To use Share MCP, visit the website sharemcp.com and explore the categorized resources. You can clone the repository from GitHub, install dependencies, and run the development server to start using it locally.
- Intuitive categorized navigation matrix - Real-time fuzzy search functionality - Rich display of MCP tools and services - Responsive design supporting various devices - Elegant animation effects - Complete documentation links
- Quickly locating required MCP resources.
- Searching for specific tools using the fuzzy search feature.
- Accessing comprehensive documentation for MCP.
Add to your AI client
Use these steps to connect Share MCP - Model Context Protocol 导航站 in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"sharemcp-ameprism": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sharemcp-ameprism"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"sharemcp-ameprism": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sharemcp-ameprism"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"sharemcp-ameprism": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sharemcp-ameprism"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"sharemcp-ameprism": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sharemcp-ameprism"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"sharemcp-ameprism": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sharemcp-ameprism"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"sharemcp-ameprism": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sharemcp-ameprism"
]
}
}
}FAQ
What is the purpose of Share MCP?
Share MCP aims to provide a centralized resource for developers working with the Model Context Protocol.
Is Share MCP open source?
Yes! Share MCP is open source and contributions are welcome.
What technologies are used in Share MCP?
Share MCP is built using Vue 3, TypeScript, and Vite.