Freshrelease MCP Server
Enables AI models to interact with Freshrelease project management platform through API integration. Supports creating and retrieving projects and tasks, managing status categories, and automating project operations through natural language.
README
Freshrelease MCP Server
An MCP server implementation that integrates with Freshrelease, enabling AI models to interact with Freshrelease projects and tasks.
Features
- Freshrelease Integration: Seamless interaction with Freshrelease API endpoints
- AI Model Support: Enables AI models to perform project/task operations through Freshrelease
- Automated Project Management: Handle project and task creation and retrieval
Components
Tools
The server offers several tools for Freshrelease operations:
-
fr_create_project: Create a project- Inputs:
name(string, required),description(string, optional)
- Inputs:
-
fr_get_project: Get a project by ID or key- Inputs:
project_identifier(number|string, required)
- Inputs:
-
fr_create_task: Create a task under a project- Inputs:
project_identifier(number|string, required),title(string, required),description(string, optional),assignee_id(number, optional),status(string, optional),due_date(YYYY-MM-DD, optional)
- Inputs:
-
fr_get_task: Get a task by ID- Inputs:
task_id(number, required)
- Inputs:
-
fr_list_status_categories: List status categories (key→id and name→id)- Inputs: None
-
fr_get_status_category_id: Resolve status key to id- Inputs:
key(todo | in_progress | done)
- Inputs:
-
fr_get_status_category_id_from_name: Resolve human name to id- Inputs:
name(Yet To Start | Work In Progress | Completed)
- Inputs:
-
fr_list_status_category_names: List human-readable status names- Inputs: None
Getting Started
Installing via Smithery
If distributed via Smithery, install for Claude Desktop (example):
npx -y @smithery/cli install @dasscoax/freshrelease_mcp --client claude
Prerequisites
- Freshrelease API access (domain + API key)
- Freshrelease API key
uvxinstalled (pip install uvorbrew install uv)
Configuration
- Obtain your Freshrelease API key
- Set up your Freshrelease domain and authentication details
Usage with Claude Desktop
- Install Claude Desktop if you haven't already
- Recommended: Use
uvxto fetch and run from PyPI (no install needed). Add the following to yourclaude_desktop_config.json:
{
"mcpServers": {
"freshrelease-mcp": {
"command": "uvx",
"args": [
"freshrelease-mcp"
],
"env": {
"FRESHRELEASE_API_KEY": "<YOUR_FRESHRELEASE_API_KEY>",
"FRESHRELEASE_DOMAIN": "<YOUR_FRESHRELEASE_DOMAIN>"
}
}
}
}
Important Notes:
- Replace
<YOUR_FRESHRELEASE_API_KEY>with your Freshrelease API key - Replace
<YOUR_FRESHRELEASE_DOMAIN>with your Freshrelease domain (e.g.,yourcompany.freshrelease.com) - Alternatively, you can install the package and point
commanddirectly tofreshrelease-mcp.
Usage with Cursor
- Add the following to Cursor settings JSON (Settings → Features → MCP → Edit JSON):
{
"mcpServers": {
"freshrelease-mcp": {
"command": "uvx",
"args": [
"freshrelease-mcp"
],
"env": {
"FRESHRELEASE_API_KEY": "<YOUR_FRESHRELEASE_API_KEY>",
"FRESHRELEASE_DOMAIN": "<YOUR_FRESHRELEASE_DOMAIN>"
}
}
}
}
Usage with VS Code (Claude extension)
- In VS Code settings (JSON), add:
{
"claude.mcpServers": {
"freshrelease-mcp": {
"command": "uvx",
"args": [
"freshrelease-mcp"
],
"env": {
"FRESHRELEASE_API_KEY": "<YOUR_FRESHRELEASE_API_KEY>",
"FRESHRELEASE_DOMAIN": "<YOUR_FRESHRELEASE_DOMAIN>"
}
}
}
}
Example Operations
Once configured, you can ask Claude to perform operations like:
- "Create a Freshrelease project named 'Roadmap Q4'"
- "Get project 'ENG' details"
- "Create a task 'Add CI pipeline' under project 'ENG'"
- "What is the id for status category 'Yet To Start'?"
Testing
For testing purposes, you can start the server manually:
uvx freshrelease-mcp --env FRESHRELEASE_API_KEY=<your_api_key> --env FRESHRELEASE_DOMAIN=<your_domain>
Troubleshooting
- Verify your Freshrelease API key and domain are correct
- Ensure proper network connectivity to Freshrelease servers
- Check API rate limits and quotas
- Verify the
uvxcommand is available in your PATH
License
This MCP server is licensed under the MIT License. See the LICENSE file in the project repository for full details.
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.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.