duvomike/poo-mcp-server
3.2
If you are the rightful owner of poo-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The Poo MCP Server is a tool that processes numbers by doubling them and adding 5, designed for easy integration and deployment.
Tools
1
Resources
0
Prompts
0
Poo MCP Server
An MCP server that provides a "poo" tool which doubles a number and adds 5.
What does the poo tool do?
The poo tool takes a number as input, doubles it, and adds 5. For example:
poo(3)
returns11
(3 × 2 + 5 = 11)poo(10)
returns25
(10 × 2 + 5 = 25)
Installation
npm install
Usage
Local Development (STDIO)
For testing with Claude Desktop or other STDIO-compatible clients:
npm start
Smithery Development
For development with Smithery's interactive playground:
npm run dev
Building for Production
npm run build
Deployment to Smithery
- Build the project:
npm run build
- Visit smithery.ai/new
- Upload your project
Tool Reference
poo
Doubles a number and adds 5.
Parameters:
number
(required): The number to process
Returns:
- A text response showing the calculation and result
Example:
Input: { "number": 3 }
Output: "Poo result: 3 → 11 (doubled 3 to 6, then added 5)"