Skip to main content
Glama
dasscoax

Freshrelease MCP Server

by dasscoax

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
FRESHRELEASE_DOMAINYesYour Freshrelease domain (e.g., yourcompany.freshrelease.com)
FRESHRELEASE_API_KEYYesYour 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

NameDescription
fr_create_projectC

Create a project in Freshrelease.

fr_get_projectA

Get a project from Freshrelease by ID or key.

- project_identifier: numeric ID (e.g., 123) or key (e.g., "ENG")
fr_create_taskA

Create a task under a Freshrelease project.

- due_date: ISO 8601 date string (e.g., 2025-12-31) if supported by your account
- issue_type_name: case-insensitive issue type key (e.g., "epic", "task").
  Resolved to an `issue_type_id` via `/project_issue_types` and added to payload.
- user: optional name or email. If provided and `assignee_id` is not,
  resolves to a user id via `/{project_identifier}/users?q=...` and sets `assignee_id`.
- additional_fields: arbitrary key/value pairs to include in the request body
  (unknown keys will be passed through to the API). Core fields
  (title, description, assignee_id, status, due_date, issue_type_id) cannot be overridden.
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.

Calls `/{project_identifier}/users?q=search_text` and returns the JSON response.
fr_link_testcase_issuesB

Bulk update multiple test cases with issue links by keys.

- Resolves `testcase_keys[]` via `GET /{project_identifier}/test_cases/{key}` to ids
- Resolves `issue_keys[]` via `GET /{project_identifier}/issues/{key}` to ids
- Performs: PUT `/{project_identifier}/test_cases/update_many` with body
  { "ids": [...], "test_case": { "issue_ids": [...] } }

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

C2.9/5.0

Scored across 8 tools

Disambiguation3/5

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.

Naming Consistency5/5

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.

Tool Count4/5

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.

Completeness2/5

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.

Maintenance

ActivityInactive
ResponsivenessUnresponsive