← All templates
Toolslackmessagingmcp

Slack Tool

MCP tool that sends messages, lists channels, and manages Slack workspaces using OAuth. Connect Slack and automate from any agent.

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.example listing 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/slack-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.

What to read next