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
test
prysmaticlabsGo implementation of Ethereum proof of stake
Serena
oraiosA powerful MCP toolkit for coding, providing semantic retrieval and editing capabilities - the IDE for your agent
MCP Framework
QuantGeekDevThe Typescript MCP Framework
MCP-Scan: An MCP Security Scanner
invariantlabs-aiSecurity scanner for AI agents, MCP servers and agent skills.
Unity MCP (Server + Plugin)
IvanMurzakAI Skills, MCP Tools, and CLI for Unity Engine. Full AI develop and test loop. Use cli for quick setup. Efficient token usage, advanced tools. Any C# method may be turned into a tool by a single line. Works with Claude Code, Gemini, Copilot, Cursor and any other absolutely for fr
Comments