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.
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
.
- Static:
- Prompts:
greeting
: Generates a personalized greeting based on a name parameter.
- Transports:
- Streamable HTTP (recommended for modern MCP clients).
- Stdio (via
mcp-remote
for clients requiring stdio transport). - HTTP SSE (legacy, removed from MCP standard).
Online Server
Test the server online at https://test.kukapay.com
using the following configurations:
- Streamable HTTP Transport
For clients supporting Streamable HTTP transport:
- Stdio Transport
For clients requiring stdio transport, use mcp-remote
:
- HTTP SSE Transport (Legacy)
For clients supporting HTTP SSE (note: deprecated in MCP standard):
Local Installation
Prerequisites
- Node.js >= 18.x
- npm >= 9.x
Installation
- Clone the repository:
- Install dependencies:
- Start the development server:The 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
- Stdio Transport
- HTTP SSE Transport (Legacy)
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
hybrid server
The server is able to function both locally and remotely, depending on the configuration or use case.
A lightweight MCP test server for verifying client connectivity, providing tools, resources, and prompts for integration.
Related MCP Servers
- -securityAlicense-qualityA 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 updated -PythonMIT License
- Python
- -securityFlicense-qualityA test MCP server implementing all protocol features including tools, resources, prompts, and sampling to help developers build and test MCP clients.Last updated -TypeScript
- -securityFlicense-qualityA testing environment for MCP server setup and client-server interactions, allowing users to verify basic MCP server functionality and test client-server communications including shell command execution.Last updated -Python