Freshrelease MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| FRESHRELEASE_DOMAIN | Yes | Your Freshrelease domain (e.g., yourcompany.freshrelease.com) | |
| FRESHRELEASE_API_KEY | Yes | Your Freshrelease API key |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| fr_create_projectC | Create a project in Freshrelease. |
| fr_get_projectA | Get a project from Freshrelease by ID or key. |
| fr_create_taskA | Create a task under a Freshrelease project. |
| fr_get_taskC | Get a task from Freshrelease by ID. |
| fr_get_all_tasksC | Get a task from Freshrelease by ID. |
| fr_get_issue_type_by_nameB | Fetch the issue type object for a given human name within a project. This function lists issue types under the specified project and returns the first match by case-insensitive name comparison. |
| fr_search_usersB | Search users in a project by name or email. |
| fr_link_testcase_issuesB | Bulk update multiple test cases with issue links by keys. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
The tools have clear distinctions for core operations like create_project, create_task, get_project, get_task, and search_users, but there is notable overlap between fr_get_all_tasks and fr_get_task, where the former's name suggests retrieving multiple tasks but its description indicates fetching a single task by ID, causing potential confusion. Additionally, fr_link_testcase_issues stands out as a specialized bulk operation that might not be immediately distinguishable from other task-related tools without careful reading.
All tools follow a consistent naming pattern with the prefix 'fr_' followed by a verb_noun structure (e.g., fr_create_project, fr_get_task, fr_search_users). This uniformity makes the tool set predictable and easy to navigate, with no deviations in style or convention across the eight tools.
With 8 tools, the count is reasonable for a project and task management server, covering essential operations like creation, retrieval, and search. However, the scope feels slightly thin as it lacks update or delete operations for projects and tasks, which are common in such domains, making it borderline but still functional for basic workflows.
The tool set has significant gaps for a project and task management domain. It includes create and get operations for projects and tasks, but missing update and delete tools limits lifecycle coverage. While there are auxiliary tools for issue types, users, and test case linking, the absence of core CRUD operations for managing existing resources will likely cause agent failures in handling modifications or removals.