Mcp Servers Wiki Website
Overview
Mcp Servers Wiki Website is a web application built using Next.js that serves as a wiki for MCP servers, providing information and resources for users.
To use the Mcp Servers Wiki Website, clone the repository from GitHub, run the development server using npm or yarn, and open your browser to view the site.
- Built with Next.js for fast performance - Easy to set up and run locally - Supports automatic font optimization with next/font
- Providing documentation and resources for MCP server users.
- Allowing users to contribute to the wiki by editing pages.
- Serving as a platform for sharing knowledge about MCP servers.
Add to your AI client
Use these steps to connect Mcp Servers Wiki Website 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": {
"mcp-servers-wiki-website-suryansh-business-work": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-wiki-website-suryansh-business-work"
]
}
}
}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": {
"mcp-servers-wiki-website-suryansh-business-work": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-wiki-website-suryansh-business-work"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-servers-wiki-website-suryansh-business-work": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-wiki-website-suryansh-business-work"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-servers-wiki-website-suryansh-business-work": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-wiki-website-suryansh-business-work"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-servers-wiki-website-suryansh-business-work": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-wiki-website-suryansh-business-work"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-servers-wiki-website-suryansh-business-work": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-wiki-website-suryansh-business-work"
]
}
}
}FAQ
How do I run the Mcp Servers Wiki Website locally?
You can run the website locally by cloning the repository and executing `npm run dev` in your terminal.
Can I contribute to the wiki?
Yes! Contributions are welcome, and you can edit the pages as needed.
What technologies are used in this project?
The project is built using Next.js and TypeScript.