Cursor EOD MCP (Slack)

Cursor EOD MCP (Slack)

Enables sending end-of-day (EOD) status updates directly to Slack channels from Cursor, with customizable message formatting and channel management.

Category
访问服务器

README

Cursor EOD MCP (Slack)

A simple MCP server that sends your end-of-day (EOD) updates to Slack.

IDE Compatibility

This MCP server uses the Model Context Protocol (MCP), an open protocol that works with IDEs that support MCP. Currently supported:

  • Cursor — Native MCP support
  • VS Code — MCP support via GitHub Copilot

The server is built on the standard MCP SDK and will work with any MCP-compatible client.

What you need

  • Node.js 18 or newer
  • Cursor (with MCP enabled) or VS Code (with GitHub Copilot)
  • A Slack workspace where you can create an app
  • Slack tokens:
    • Bot token (starts with xoxb-) — required to post
    • User token (starts with xoxp- or xoxs-) — optional, use if you want your own name/photo on messages

How to get your Slack tokens (step by step)

  1. Go to https://api.slack.com/apps → Create New AppFrom scratch. You can call it EOD Bot. Ensure you are signed in to the desired Slack Workspace you want to post messages to.
  2. In the left menu, click OAuth & Permissions.
  3. Under Bot Token Scopes, add: chat:write, channels:read, groups:read.
  4. (Optional, for posting as you) under User Token Scopes, add: chat:write, channels:read, groups:read.
  5. 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.
  6. Copy your tokens:
    • Bot token: looks like xoxb-... (required).
    • User token: looks like xoxp-... or xoxs-... (optional, for your identity).

Keep tokens private. Do not commit them to Git.

Quick setup (no cloning, use npx)

Option 1: One-click install (Cursor only)

Click this link to automatically install the MCP server in Cursor:

<a href="cursor://anysphere.cursor-deeplink/mcp/install?name=@techhalo/cursor-eod-mcp&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkB0ZWNoaGFsby9jdXJzb3ItZW9kLW1jcCJdLCJlbnYiOnsiU0xBQ0tfQk9UX1RPS0VOIjoiIiwiU0xBQ0tfVVNFUl9UT0tFTiI6IiIsIlNMQUNLX0RFRkFVTFRfQ0hBTk5FTCI6IiJ9fQ=="><img src="https://cursor.com/deeplink/mcp-install-dark.png" alt="Add @techhalo/cursor-eod-mcp MCP server to Cursor" style="max-height:28px;" /></a>

If the button doesn't work, try copying and pasting this raw link in your browser address bar: cursor://anysphere.cursor-deeplink/mcp/install?name=@techhalo/cursor-eod-mcp&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkB0ZWNoaGFsby9jdXJzb3ItZW9kLW1jcCJdLCJlbnYiOnsiU0xBQ0tfQk9UX1RPS0VOIjoiIiwiU0xBQ0tfVVNFUl9UT0tFTiI6IiIsIlNMQUNLX0RFRkFVTFRfQ0hBTk5FTCI6IiJ9fQ==

After installation, edit ~/.cursor/mcp.json and fill in your Slack tokens in the env section (they're pre-configured as empty strings).

Option 2: Manual setup (Cursor)

  1. Edit ~/.cursor/mcp.json and add:
{
  "mcpServers": {
    "@techhalo/cursor-eod-mcp": {
      "command": "npx",
      "args": ["-y", "@techhalo/cursor-eod-mcp"],
      "env": {
        "SLACK_BOT_TOKEN": "xoxb-your-bot-token",
        "SLACK_USER_TOKEN": "xoxp-your-user-token-or-empty",
        "SLACK_DEFAULT_CHANNEL": "halo"
      }
    }
  }
}
  1. Restart Cursor so it picks up the server. Or toggle off and on the cursor-eod-mcp MCP Server from the Cursor "Tools & MCP" Settings page.
  2. In Cursor chat, try:
list_channels
set_default_channel channel="frontend-team"
eod_status summary="• Did X\n• Reviewed Y\n• Shipped Z"

You should see the message appear in Slack.

Option 3: VS Code setup

  1. Open VS Code and ensure you have GitHub Copilot enabled
  2. Edit ~/.vscode/mcp.json (or create it if it doesn't exist) and add:
{
  "servers": {
    "cursor-eod-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@techhalo/cursor-eod-mcp"],
      "env": {
        "SLACK_BOT_TOKEN": "xoxb-your-bot-token",
        "SLACK_USER_TOKEN": "xoxp-your-user-token-or-empty",
        "SLACK_DEFAULT_CHANNEL": "halo"
      }
    }
  }
}

Note: VS Code uses servers instead of mcpServers and requires "type": "stdio" for stdio-based servers. See the VS Code MCP documentation for more details.

  1. Restart VS Code or reload the window
  2. Use the MCP tools in GitHub Copilot Chat

Alternative setup (clone locally)

git clone https://github.com/SackeyDavid/cursor-eod-mcp.git
cd cursor-eod-mcp
npm install
npm run build

For Cursor:

Point MCP to the built file in ~/.cursor/mcp.json:

{
  "mcpServers": {
    "cursor-eod-mcp": {
      "command": "node",
      "args": ["/absolute/path/to/cursor-eod-mcp/dist/index.js"], // eg. /Users/Kofi/mcps/cursor-eod-mcp/dist/index.js
      "env": {
        "SLACK_BOT_TOKEN": "xoxb-your-bot-token",
        "SLACK_USER_TOKEN": "xoxp-your-user-token-or-empty",
        "SLACK_DEFAULT_CHANNEL": "frontend-team"
      } 
    }
  }
}

For VS Code:

Point MCP to the built file in ~/.vscode/mcp.json:

{
  "servers": {
    "cursor-eod-mcp": {
      "type": "stdio",
      "command": "node",
      "args": ["/absolute/path/to/cursor-eod-mcp/dist/index.js"], // eg. /Users/Kofi/mcps/cursor-eod-mcp/dist/index.js
      "env": {
        "SLACK_BOT_TOKEN": "xoxb-your-bot-token",
        "SLACK_USER_TOKEN": "xoxp-your-user-token-or-empty",
        "SLACK_DEFAULT_CHANNEL": "frontend-team"
      } 
    }
  }
}

Restart your IDE and test the same commands.

Handy commands (run in Cursor chat or VS Code Copilot 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 — send an EOD now. The MCP server automatically picks the default channel, auto-generates a summary from your Cursor workspace conversations, and sends the message.
    Optional parameters: summary="• Did X\n• Fixed Y", 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. for bot type /invite @EOD Bot); double-check tokens; restart your IDE.
  • invalid_auth: token typo or wrong type (must start with xoxb- or xoxp-/xoxs-).
  • “No channel specified”: set SLACK_DEFAULT_CHANNEL or run set_default_channel.
  • VS Code: Make sure GitHub Copilot is enabled and the MCP server appears in the Copilot Chat tools list. Check the MCP output log if the server isn't starting.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选