mcp-server-bash
@antonum
About mcp-server-bash
minimalistic MCP server written in bash script
Basic information
Config
No standard config provided
This server doesn't expose a parseable MCP config block in its README. See the repository for install instructions.
RepositoryTools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is mcp-server-bash?
mcp-server-bash is a minimalistic MCP (Model Context Protocol) server written entirely in shell script. It implements the MCP lifecycle—initialization and operation—and provides a single tool to add two numbers, serving as a reference for learning MCP basics.
How to use mcp-server-bash?
Download the mcp_add.sh script, make it executable (chmod +x mcp_add.sh), then test it from the CLI by piping JSON-RPC messages to the script (e.g., echo '{"jsonrpc":"2.0","id":2,"method":"tools/list","params":{}}' | bash mcp_add.sh). For use with LLM hosts, add the script’s path to a JSON configuration file under mcpServers.
Key features of mcp-server-bash
- Written entirely in shell script (bash)
- Implements full MCP lifecycle (handshake + operation)
- Provides a single “addition” tool
- Can be tested directly from the command line
- Configurable for Claude Desktop and mcphost
- Minimal codebase for learning MCP internals
Use cases of mcp-server-bash
- Learning how an MCP server works through a minimal example
- Adding two numbers via an LLM host (e.g., Claude Desktop, mcphost)
- Testing MCP protocol messages (tools/list, tools/call) in a shell environment
- Building a foundation for custom MCP servers in shell scripts
FAQ from mcp-server-bash
What does this MCP server do?
It is a minimal shell script that implements the MCP protocol and exposes a single tool named “addition” which takes two numbers and returns their sum.
How do I test the server without an LLM host?
Pipe JSON-RPC requests directly to the script. For example, to list tools use echo '{"method":"tools/list","id":2,"jsonrpc":"2.0"}' | bash mcp_add.sh. To call the addition tool use echo '{"jsonrpc":"2.0","id":20,"method":"tools/call","params":{"name":"addition","arguments":{"num1":"1","num2":"2"}}}'.
How do I configure this server for Claude Desktop or mcphost?
Add an entry to the MCP configuration JSON with the command set to the full path of mcp_add.sh and an empty args array, as shown in the README.
What are the runtime requirements?
The server requires a Unix-like environment with bash and optionally jq for formatted output during CLI testing. The script is self-contained.
Does this server support multiple tools or resources?
No—the server provides only one tool (“addition”). It is designed as a minimal example, not a full-featured implementation.
More Developer Tools MCP servers
FastAPI-MCP
tadata-orgExpose your FastAPI endpoints as Model Context Protocol (MCP) tools, with Auth!
Test
x1xhlolFULL Augment Code, Claude Code, Cluely, CodeBuddy, Comet, Cursor, Devin AI, Junie, Kiro, Leap.new, Lovable, Manus, NotionAI, Orchids.app, Perplexity, Poke, Qoder, Replit, Same.dev, Trae, Traycer AI, VSCode Agent, Warp.dev, Windsurf, Xcode, Z.ai Code, Dia & v0. (And other Open Sou
MCP-Bridge
SecretiveShellA middleware to provide an openAI compatible endpoint that can call MCP tools
test
harlancA simple,high performance and secure live media server in pure Rust (RTMP[cluster]/RTSP/WebRTC[whip/whep]/HTTP-FLV/HLS).🦀
Smithery CLI
smithery-aiInstall, manage and develop MCP servers and skills for agents
Comments