Overview
MCP Server Test is a testing server project designed to showcase and test various server functionalities.
To use MCP Server Test, ensure you have Node.js and npm installed, then install the dependencies using npm install, start the server with npm start, and run tests with npm test.
- Basic server functionalities - RESTful API support - Database integration - User authentication
- Testing server capabilities for application development.
- Demonstrating RESTful API interactions.
- Validating user authentication processes.
Add to your AI client
Use these steps to connect MCP Server Test 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-server-test-fist-maestro": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-test-fist-maestro"
]
}
}
}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-server-test-fist-maestro": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-test-fist-maestro"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-test-fist-maestro": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-test-fist-maestro"
]
}
}
}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-server-test-fist-maestro": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-test-fist-maestro"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-test-fist-maestro": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-test-fist-maestro"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-test-fist-maestro": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-test-fist-maestro"
]
}
}
}FAQ
What are the environment requirements?
Node.js >= 14.0.0 and npm >= 6.0.0 are required.
How can I contribute to the project?
You can fork the repository, create a feature branch, make your changes, and submit a pull request.
What license is MCP Server Test under?
It is under the MIT License.