ActionKit MCP Starter logo

ActionKit MCP Starter

by useparagon

This is an MCP server demoing ActionKit, allowing access to Slack actions within Claude Desktop or Cursor. It assumes user authentication via the Paragon Connect Portal and can be customized to include other actions beyond Slack.

View on GitHub

Last updated: N/A

ActionKit MCP Starter

Background

This repo is an MCP server demoing ActionKit. Connect this server to your Claude Desktop or Cursor to get access to all of ActionKit's Slack actions. In this example it is assumed that your user has authed via the Paragon Connect Portal. For the purposes of this demo we filtered actions to Slack actions, but this setting can be changed by removing the Slack filter in the index.ts file.

Claude Desktop Setup

  1. First install Claude Desktop
  2. Clone this repo and run npm install
  3. Next run a npm run build to build a javascript file that will be used by Claude Desktop
  4. Our last step is to point Claude Desktop to our MCP server
  • Create/edit the Claude config file using a text editor i.e. vi ~/Library/Application\ Support/Claude/claude_desktop_config.json
  • In the claude_desktop_config.json file paste this configuration:
{
    "mcpServers": {
      "mcp-actionkit": {
            "command": "node",
            "args": [
                "ABSOLUTE_PATH/actionkit-mcp-starter/build/index.js"
            ],
            "env": {
                "USER": "",
                "PARAGON_PROJECT_ID": "",
                "SIGNING_KEY":""
            }
        }
    }
}
  • Fill in your env variables with your Paragon credentials
  • For the USER env variable, this will correspond to the logged in user authenticated in the Paragon Connect Portal
    • Use demo.useparagon.com to quickly login as your user and authenticate to Slack (This is a necessary for the Slack tools to be used on your behalf)
  • Note: ABSOLUTE_PATH can be found by <CMD> clicking a file in your Finder on Mac
  1. Open Claude Desktop and there should be a hammer icon with the list of Slack tools
  • Additionally there should also be a plug icon where you can verify that your app is connected to our MCP
    image

    image

Cursor Setup

  1. Install Cursor if not installed already
  2. Clone this repo and run npm install
  3. Next run a npm run build to build a javascript file that will be used by Cursor
  4. Our last step is to point Cursor to our MCP server
  • Create/edit the Cursor config file using a text editor i.e. vi ~/.cursor/mcp.json
  • In the mcp.json file paste this configuration:
{
    "mcpServers": {
      "mcp-actionkit": {
            "command": "node",
            "args": [
                "ABSOLUTE_PATH/actionkit-mcp-starter/build/index.js"
            ],
            "env": {
                "USER": "",
                "PARAGON_PROJECT_ID": "",
                "SIGNING_KEY":""
            }
        }
    }
}
  • Fill in your env variables with your Paragon credentials
  • For the USER env variable, this will correspond to the logged in user authenticated in the Paragon Connect Portal
    • Use demo.useparagon.com to quickly login as your user and authenticate to Slack (This is a necessary for the Slack tools to be used on your behalf)
  • Note: ABSOLUTE_PATH can be found by <CMD> clicking a file in your Finder on Mac
  1. Open Cursor and a Cursor Settings page should appear with available MCPs
  • You can also check by going to Settings>Cursor Settings>MCP
    image

    image