poo-mcp-server

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) returns 11 (3 × 2 + 5 = 11)
  • poo(10) returns 25 (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

  1. Build the project: npm run build
  2. Visit smithery.ai/new
  3. 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)"