minimum-mcp-server
Overview
minimum-mcp-server is a lightweight server project built using Bun, a fast all-in-one JavaScript runtime. It serves as a minimal setup for creating and running JavaScript applications.
To use minimum-mcp-server, first install the necessary dependencies by running bun install. Then, you can start the server by executing bun run index.ts in your terminal.
- Fast setup using Bun for JavaScript applications - Simple commands to install dependencies and run the server - Minimal configuration required to get started
- Quickly setting up a development environment for JavaScript projects.
- Testing JavaScript applications in a lightweight server environment.
- Learning and experimenting with Bun as a JavaScript runtime.
Add to your AI client
Use these steps to connect minimum-mcp-server 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": {
"minimum-mcp-server-a1740942002": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-minimum-mcp-server-a1740942002"
]
}
}
}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": {
"minimum-mcp-server-a1740942002": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-minimum-mcp-server-a1740942002"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"minimum-mcp-server-a1740942002": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-minimum-mcp-server-a1740942002"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"minimum-mcp-server-a1740942002": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-minimum-mcp-server-a1740942002"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"minimum-mcp-server-a1740942002": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-minimum-mcp-server-a1740942002"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"minimum-mcp-server-a1740942002": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-minimum-mcp-server-a1740942002"
]
}
}
}FAQ
What is Bun?
Bun is a fast all-in-one JavaScript runtime that allows you to run JavaScript applications efficiently.
Is minimum-mcp-server free to use?
Yes! minimum-mcp-server is open-source and free to use for everyone.
What are the system requirements for running minimum-mcp-server?
As long as you have Bun installed, you can run minimum-mcp-server on any system that supports JavaScript.