mcp-test-server
Offers integration with Windsurf (Codeium's product), with specific configuration paths for adding the MCP server to Windsurf.
Enables access to both static and dynamic resources through test:// and user:// URI schemes, with support for multiple transport methods including Streamable HTTP and Stdio.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-test-servercalculate the sum of 5, 10, and 15"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Test Server
Lightweight MCP test server for verifying client connectivity, with tools and prompts for integration. Try it at kukayay.com or install locally.
Features
Tools:
calculate_sum: Sums an array of numbers.
Resources:
Static:
test://data- Returns static test data.Dynamic:
user://{userId}- Returns user profile data for a givenuserId.
Prompts:
greeting: Generates a personalized greeting based on a name parameter.
Transports:
Streamable HTTP (recommended for modern MCP clients).
Stdio (via
mcp-remotefor clients requiring stdio transport).HTTP SSE (legacy, removed from MCP standard).
Related MCP server: mcpbin
Online Server
Test the server online at https://test.kukapay.com using the following configurations:
Streamable HTTP Transport
For clients supporting Streamable HTTP transport:
{
"McpServers": {
"Test Server": {
"url": "https://test.kukapay.com/api/mcp"
}
}
}Stdio Transport
For clients requiring stdio transport, use mcp-remote:
{
"McpServers": {
"Test Server": {
"command": "npx",
"args": ["mcp-remote", "-y", "https://test.kukapay.com/api/mcp"]
}
}
}HTTP SSE Transport (Legacy)
For clients supporting HTTP SSE (note: deprecated in MCP standard):
{
"McpServers": {
"Test Server": {
"url": "https://test.kukapay.com/api/sse"
}
}
}Local Installation
Prerequisites
Node.js >= 18.x
npm >= 9.x
Installation
Clone the repository:
git clone https://github.com/kukapay/mcp-test-server.git cd mcp-test-serverInstall dependencies:
npm installStart the development server:
npm run devThe server will be available at
http://localhost:3000.
Configuration
Configure your MCP client to connect to the local server using one of the following transport methods:
Streamable HTTP Transport
{
"McpServers": {
"Test Server": {
"url": "http://localhost:3000/api/mcp"
}
}
}Stdio Transport
{
"McpServers": {
"Test Server": {
"command": "npx",
"args": ["mcp-remote", "-y", "http://localhost:3000/api/mcp"]
}
}
}HTTP SSE Transport (Legacy)
{
"McpServers": {
"Test Server": {
"url": "http://localhost:3000/api/sse"
}
}
}Client-Specific Configuration
Claude Desktop: Add the above configuration to
~/Library/Application Support/Claude/claude_desktop_config.json(macOS) or%APPDATA%\Claude\claude_desktop_config.json(Windows).Cursor: Add to
~/.cursor/mcp.json.Windsurf: Add to
~/.codeium/windsurf/mcp_config.json.
License
MIT License. See LICENSE for details.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceA test server implementing all features of the MCP protocol, including prompts, tools, resources, and sampling, designed for testing MCP clients rather than practical applications.Last updatedMIT
- AlicenseAqualityBmaintenanceAn MCP server that provides echo resource, tool, and prompt functionality for testing and demonstration.Last updated9521MIT
- Alicense-qualityDmaintenanceA test server that exercises all MCP protocol features including prompts, tools, resources, and sampling, intended for MCP client builders.Last updated57,880Sleepycat
Related MCP Connectors
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
MCP server providing access to the Scorecard API to evaluate and optimize LLM systems.
A MCP server built for developers enabling Git based project management with project and personal…
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kukapay/mcp-test-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server