titikaka2024/mcptools
The Swiss Army knife for MCP (Model Context Protocol) — create, test, inspect, and wrap MCP servers with ease.
Platform-specific configuration:
{
"mcpServers": {
"mcptools": {
"command": "npx",
"args": [
"-y",
"mcptools"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
<div align="center">
Create, test, inspect, and wrap MCP servers with ease.
[](https://www.npmjs.com/package/mcptools) [](https://opensource.org/licenses/MIT) [](https://nodejs.org) [](https://github.com/titikaka2024/mcptools/stargazers) [](https://github.com/titikaka2024/mcptools/pulls)
Getting Started | Commands | API | Examples | Contributing
</div>
---
MCP is the open protocol that lets AI assistants (Claude, GPT, etc.) call external tools, read data, and interact with the world. mcptools makes building and debugging MCP servers fast and painless.
Building MCP servers today means writing boilerplate JSON-RPC handling, manually testing with echo | node, and guessing why your server isn't connecting. mcptools fixes all of that:
# Install globally
npm install -g mcptools
# Create a new MCP server
mcptools create my-server
# Build and test it
cd my-server
npm install && npm run build
mcptools test --command "node dist/index.js"npm inLoading reviews...