ActionKit MCP Starter
Starter code for a MCP server powered by ActionKit
useparagon
README
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
- First install
Claude Desktop
- Clone this repo and run
npm install
- Next run a
npm run build
to build a javascript file that will be used by Claude Desktop - 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 theParagon 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
- 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
Cursor Setup
- Install
Cursor
if not installed already - Clone this repo and run
npm install
- Next run a
npm run build
to build a javascript file that will be used by Cursor - 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 theParagon 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
- Open Cursor and a Cursor Settings page should appear with available MCPs
- You can also check by going to
Settings>Cursor Settings>MCP
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
MCP Package Docs Server
Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.
Claude Code MCP
An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.
@kazuph/mcp-taskmanager
Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.
Linear MCP Server
Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.
Jira-Context-MCP
MCP server to provide Jira Tickets information to AI coding agents like Cursor

Linear MCP Server
A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.