Ni-zav/is-odd-mcp
If you are the rightful owner of is-odd-mcp 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 `is-odd-mcp` is a TypeScript-based Model Context Protocol (MCP) server designed to determine the oddness of a number, making it accessible to AI agents.
Say hello to is-odd-mcp
Helps you know whether a number is odd or not.
This is a TypeScript-based MCP server that implements the oddness algorithm in a way accessible to AI agents.
Fork of jamieday/is-even-mcp. An Odd version of the original MCP server.
Development
Install dependencies:
npm install
Build the server:
npm run build
For development with auto-rebuild:
npm run watch
Installation
To use with Claude Desktop, add the server config:
On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"is-odd": {
"command": "/path/to/is-odd/build/index.js"
}
}
}
Debugging
Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the MCP Inspector, which is available as a package script:
npm run inspector
The Inspector will provide a URL to access debugging tools in your browser.