Skip to main content
Glama
anthonybaldwin

Bun Fun MCP Server

bun-fun

Simple local stdio MCP server example compiled with Bun

Install dependencies

bun install

Related MCP server: Basic MCP Server

Build executable

bun run build

Add 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.json

  • Executable: C:\\path\\to\\bun-fun\\mcp-server.exe

  • Development: C:\\path\\to\\bun-fun\\index.ts

macOS

  • Config: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Executable: /path/to/bun-fun/mcp-server

  • Development: /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.exe

  • Development: C:\\path\\to\\bun-fun\\index.ts

macOS/Linux

  • Executable: /path/to/bun-fun/mcp-server

  • Development: /path/to/bun-fun/index.ts

From Claude Desktop

NOTE

macOS and WSL only.

claude mcp add-from-claude-desktop

To-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 number

  • b (number, required): Second number

Example:

  • Input: { "a": 5, "b": 3 }

  • Output: 5 + 3 = 8

A
license - permissive license
-
quality - not tested
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • -
    license
    -
    quality
    -
    maintenance
    A 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.
    Last updated
  • -
    license
    -
    quality
    -
    maintenance
    A 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.
    Last updated
  • F
    license
    -
    quality
    B
    maintenance
    A 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.
    Last updated
    17

View all related MCP servers

Related MCP Connectors

  • A basic MCP server to operate on the Postman API.

  • MCP server for AI dialogue using various LLM models via AceDataCloud

  • MCP (Model Context Protocol) server for Appwrite

View all MCP Connectors

Latest Blog Posts

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/anthonybaldwin/bun-fun'

If you have feedback or need assistance with the MCP directory API, please join our Discord server