Package Exports
- @justrelease/mcp-server
- @justrelease/mcp-server/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@justrelease/mcp-server) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@justrelease/mcp-server
MCP server for JustRelease — manage projects, cards, and releases via AI.
Works with Claude Code, Cursor, and any MCP-compatible client.
Setup
1. Get your API token
Go to justrelease.dev/mcp and generate a personal API token.
2. Configure your MCP client
Claude Code (~/.claude.json or project .mcp.json):
{
"mcpServers": {
"justrelease": {
"command": "npx",
"args": ["@justrelease/mcp-server"],
"env": {
"JUSTRELEASE_TOKEN": "jrl_your_token_here"
}
}
}
}Cursor (.cursor/mcp.json):
{
"mcpServers": {
"justrelease": {
"command": "npx",
"args": ["@justrelease/mcp-server"],
"env": {
"JUSTRELEASE_TOKEN": "jrl_your_token_here"
}
}
}
}Or install globally:
npm install -g @justrelease/mcp-serverAvailable tools
Projects
| Tool | Description |
|---|---|
list_projects |
List your projects |
get_project |
Project details + members |
get_board_summary |
Columns with card counts, totals, versions |
Columns
| Tool | Description |
|---|---|
list_columns |
Board columns (ordered by position) |
Cards
| Tool | Description |
|---|---|
list_cards |
List cards with filters (column, tag, priority) |
get_card |
Full card details (column, tags, priority, images) |
search_cards |
Search cards by title/description |
create_card |
Create a card |
update_card |
Edit title, description, priority, tags |
move_card |
Move card to another column |
delete_card |
Soft delete a card |
assign_card |
Assign/unassign a member |
Metadata
| Tool | Description |
|---|---|
list_tags |
Project tags |
list_priorities |
Project priorities |
Releases
| Tool | Description |
|---|---|
list_versions |
Past releases |
create_release |
Close a version (collects done cards, generates changelog) |
get_changelog |
Changelog for a release |
Authentication
The server authenticates via a personal API token (jrl_...). The token is exchanged for a Supabase session through a secure Edge Function — all queries respect Row Level Security.
Tokens can be generated and revoked at justrelease.dev/mcp.
License
MIT