is-even-mcp
v4.2.0
Published
Helps you know whether a number is even or not.
Readme
Introducing is-even-mcp
Helps you know whether a number is even or not.
This is a TypeScript-based MCP server that implements the evenness algorithm in a way accessible to AI agents.
Development
Install dependencies:
npm installBuild the server:
npm run buildFor development with auto-rebuild:
npm run watchInstallation
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-even": {
"command": "/path/to/is-even/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 inspectorThe Inspector will provide a URL to access debugging tools in your browser.
