What it does
Minimal MCP tool with JSON schema inputs — the fastest way to build a tool on Reminix.
When to use this
Pick this template when you want to:
- Get a working tool live in minutes without writing boilerplate
- Start from a known-good baseline and customize it
- See how the pieces fit together in a real Reminix project
What's included
- A ready-to-deploy tool with sensible defaults
- The runtime SDK and required dependencies pre-configured
- A
serve()entrypoint Reminix can detect and deploy - A
.env.examplelisting every secret you need to set
Deploy and invoke
Click Deploy above to push this template to a new project in your Reminix workspace. After the build completes, call the tool from any client:
curl -X POST https://api.reminix.com/v1/tools/starter-tool/call \
-H "Authorization: Bearer $REMINIX_API_KEY" \
-H "Content-Type: application/json" \
-d '{"arguments": {}}'
Customize it
The handler is the file you'll touch most. Open it in your editor, replace the body with whatever logic you need, push, and Reminix redeploys automatically. See Creating Tools for the API surface.