Bun Fun MCP Server
Click on "Deploy 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., "@Bun Fun MCP Serverwhat time is it right now?"
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.
bun-fun
Simple local stdio MCP server example compiled with Bun
Install dependencies
bun installRelated MCP server: Basic MCP Server
Build executable
bun run buildAdd to Claude Desktop
Executable:
{
...
"mcpServers": {
"example-mcp-server": {
"command": "<path-to-executable>"
}
}
}Development:
{
...
"mcpServers": {
"example-mcp-server-dev": {
"command": "bun",
"args": ["run", "<path-to-index.ts>"]
}
}
}Windows
Config:
%APPDATA%\Claude\claude_desktop_config.jsonExecutable:
C:\\path\\to\\bun-fun\\mcp-server.exeDevelopment:
C:\\path\\to\\bun-fun\\index.ts
macOS
Config:
~/Library/Application Support/Claude/claude_desktop_config.jsonExecutable:
/path/to/bun-fun/mcp-serverDevelopment:
/path/to/bun-fun/index.ts
Add to Claude Code
CLI
Executable:
claude mcp add example-mcp-server "<path-to-executable>"Development:
claude mcp add example-mcp-server-dev "bun" --args "run" "<path-to-index.ts>"Windows
Executable:
C:\\path\\to\\bun-fun\\mcp-server.exeDevelopment:
C:\\path\\to\\bun-fun\\index.ts
macOS/Linux
Executable:
/path/to/bun-fun/mcp-serverDevelopment:
/path/to/bun-fun/index.ts
From Claude Desktop
macOS and WSL only.
claude mcp add-from-claude-desktopTo-do
IDE examples
Available MCP Tools
This server provides the following MCP tools:
get_current_time
Returns the current time in ISO format.
Parameters: None
Example response: 2025-09-20T15:30:45.123Z
echo
Echoes back the provided message.
Parameters:
message(string, required): The message to echo back
Example:
Input:
{ "message": "Hello, world!" }Output:
Echo: Hello, world!
add_numbers
Adds two numbers together.
Parameters:
a(number, required): First numberb(number, required): Second number
Example:
Input:
{ "a": 5, "b": 3 }Output:
5 + 3 = 8
This server cannot be deployed
Maintenance
Related MCP Connectors
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
A simple MCP server built with FastMCP and python
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceA basic educational MCP server that provides simple tools for mathematical calculations, text manipulation, and time retrieval. Designed for learning MCP implementation patterns and development purposes.-
- -licenseNot gradedqualityNot gradedmaintenanceA minimal MCP server example that provides basic utility tools including text echo and current time retrieval. Serves as a simple starting point for building MCP servers with fastmcp.-
- -licenseNot gradedqualityNot gradedmaintenanceA basic MCP server template with example tools for echoing messages and retrieving server information. Built with FastMCP framework and supports both stdio and HTTP transports for integration with various clients.-
- FlicenseNot gradedqualityBmaintenanceA generic template for developing MCP servers with basic examples including echo tool, server info resource, and greeting prompt. Provides a starting point for building custom MCP servers with Bun.5 npm-