Enables sending end-of-day (EOD) status updates to Slack channels, with capabilities for listing channels, configuring default channels, customizing message formats, and posting updates with optional summary, pending items, and tomorrow's plans.
Cursor EOD MCP (Slack)
A simple MCP server for Cursor that sends your end-of-day (EOD) updates to Slack.
What you need
Node.js 18 or newer
Cursor installed (MCP enabled)
A Slack workspace where you can create an app
Slack tokens:
Bot token (starts with
xoxb-) — required to postUser token (starts with
xoxp-orxoxs-) — optional, use if you want your own name/photo on messages
How to get your Slack tokens (step by step)
Go to https://api.slack.com/apps → Create New App → From scratch. You can call it EOD Bot. Ensure you are signed in to the desired Slack Workspace you want to post messages to.
In the left menu, click OAuth & Permissions.
Under Bot Token Scopes, add:
chat:write,channels:read,groups:read.(Optional, for posting as you) under User Token Scopes, add:
chat:write,channels:read,groups:read.Scroll up and click Install to {Workspace} (or Reinstall) and approve. You may need to repeat clicking the Install to {Workspace} button until you see the changes saved.
Copy your tokens:
Bot token: looks like
xoxb-...(required).User token: looks like
xoxp-...orxoxs-...(optional, for your identity).
Keep tokens private. Do not commit them to Git.
Quick setup (no cloning, use npx)
Edit
~/.cursor/mcp.jsonand add:
Restart Cursor so it picks up the server. Or toggle off and on the cursor-eod-mcp MCP Server from the "Tools & MCP" Settings page.
In Cursor chat, try:
You should see the message appear in Slack.
Alternative setup (clone locally)
Then point MCP to the built file:
Restart Cursor (or toggle off and on the cursor-eod-mcp MCP Server from Cursor's "Tools & MCP" Settings page) and test the same commands.
Handy commands (run in Cursor chat)
configure slack_token="xoxb-..." default_channel="channel"— save tokens/channel locally.list_channels— see channels your token can read.set_default_channel channel="channel"— set the default target.preview_format— see the message layout.update_format_template template="*EOD ({date})*\n\n{summary}"— change formatting.eod_status summary="• Did X\n• Fixed Y"— send an EOD now.
Optional:pending="...",planTomorrow="...",channel="other-channel".
Notes
Bot token is enough to post; user token is only if you want your personal name/photo.
Make sure the bot/user is a member of the target Slack channel.
Tokens stay on your machine; never commit them.
Troubleshooting
Nothing posts: invite the bot/user to the channel (ie. /invite @EOD Bot); double-check tokens; restart Cursor.
invalid_auth: token typo or wrong type (must start withxoxb-orxoxp-/xoxs-).“No channel specified”: set
SLACK_DEFAULT_CHANNELor runset_default_channel.
This server cannot be installed