notmcp exposes a local command-line toolbox for discovering and running small executable tools that perform API calls, automation, and credentialed operations. It standardizes tool contracts (JSON in/out, stdlib-only Python), credentials management, and interactive connection flows so agents can orchestrate external integrations safely.
Use notmcp when an agent needs to call external services, run prebuilt automation scripts, or guide a user through credential provisioning for APIs like GitHub, Slack, Google, or OpenAI. It's intended for interactive, stepwise flows where user confirmation and credential handling are required.
bin and scripts (has_scripts=true).Best used with agents that can interact with local shells and prompt users for secrets (agent frameworks that support tool execution and credential injection). Human verification is recommended before storing or using sensitive credentials.
notmcp is a local toolbox runner that lets agents discover and execute prebuilt scripts for API integrations. Of the 3 bundled scripts, demo-echo ran successfully, while context7-docs and http-get exited with missing-parameter errors (expected in DRY_RUN mode without input). Scripts are well-structured using stdlib-only Python with proper JSON stdin/stdout contracts. No security issues found — credentials are managed through a dedicated mechanism, and no hardcoded secrets or destructive commands exist. The SKILL.md is comprehensive with detailed connection guides for common services, though it could benefit from splitting into reference files.
Clean skill with no malicious intent. The http-get tool is a generic URL fetcher which is intentional but could be a concern in restricted environments. Connection guide section in SKILL.md is very thorough and genuinely useful.