An MCP (Model Context Protocol) server for FreeScout helpdesk ticket management and workflow automation. This server provides tools to interact with FreeScout tickets, analyze issues, manage responses, and integrate with Git workflows.
- ✓Open-source license (GPL-3.0)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Mature repo (>1y old)
- ✓Documented (README)
git clone https://github.com/verygoodplugins/mcp-freescout{
"mcpServers": {
"mcp-freescout": {
"command": "node",
"args": ["/path/to/mcp-freescout/dist/index.js"]
}
}
}MCP Servers overview
# FreeScout MCP Server
An MCP (Model Context Protocol) server for FreeScout helpdesk ticket management. This server provides tools to interact with FreeScout tickets, analyze issues, and manage customer responses.
## Features
- 🎫 **Ticket Management**: Fetch, analyze, and update FreeScout tickets
- 🔍 **Intelligent Analysis**: Automatically analyze tickets to determine issue type, root cause, and solutions
- 💬 **Draft Responses**: Generate customer replies based on ticket analysis
- 📊 **Advanced Search**: First-class filter parameters with relative time support ("7d", "24h")
- 🔒 **Type Safety**: Full Zod schema validation with structured outputs
- 🔁 **Reliability**: Automatic retry logic with exponential backoff for transient failures
- ⚡ **Protocol-ready stdio**: A fresh `buildServer` factory serves both 2025-era and 2026 MCP stdio clients
## v3 runtime
- Requires Node.js 24 or newer.
- Uses `@modelcontextprotocol/server` 2.x with Zod 4 input schemas.
- Serves both the 2025 legacy handshake and the 2026 stdio protocol from the same server factory.
- Delivers `structuredContent` for stable analysis and write-operation results without declaring output schemas.
- Accepts FreeScout's successful `204 No Content` update responses and records the user ID that initiated a ticket update.
## Installation
### Prerequisites
- Node.js 24 or higher
- FreeScout instance with API access enabled
## Quick Start (Recommended)
The easiest way to use this MCP server is with `npx`:
### With Claude Desktop
Add this to your Claude Desktop settings (`~/Library/Application Support/Claude/claude_desktop_config.json` on macOS):
```json
{
"mcpServers": {
"freescout": {
"command": "npx",
"args": ["@verygoodplugins/mcp-freescout@latest"],
"env": {
"FREESCOUT_URL": "https://your-freescout-domain.com",
"FREESCOUT_API_KEY": "your-api-key-here"
}
}
}
}
```
### With Cursor IDE
Add this to your Cursor MCP settings:
**Method 1: Via Cursor Settings UI**
1. Open Cursor Settings (Cmd/Ctrl + ,)
2. Search for "MCP"
3. Click "Edit in settings.json"
4. Add the MCP server configuration
**Method 2: Manual Configuration**
Add this to your Cursor settings.json or create `~/.cursor/mcp.json`:
```json
{
"mcp": {
"servers": {
"freescout": {
"command": "npx",
"args": ["@verygoodplugins/mcp-freescout@latest"],
"env": {
"FREESCOUT_URL": "https://your-freescout-domain.com",
"FREESCOUT_API_KEY": "your-api-key-here"
}
}
}
}
}
```
The server communicates only with the FreeScout instance configured in its environment.
## Manual Installation (Alternative)
If you prefer to install and run the server locally:
1. Clone this repository:
```bash
git clone https://github.com/verygoodplugins/mcp-freescout.git
cd mcp-freescout
```
2. Install dependencies:
```bash
npm install
```
3. Build the TypeScript code:
```bash
npm run build
```
4. Configure your MCP client to use the local installation:
```json
{
"mcpServers": {
"freescout": {
"command": "node",
"args": ["/path/to/mcp-freescout/dist/index.js"],
"env": {
"FREESCOUT_URL": "https://your-freescout-domain.com",
"FREESCOUT_API_KEY": "your-api-key-here"
}
}
}
}
```
## Usage with Other MCP Clients
Run the server directly:
```bash
npm start
```
Or in development mode with auto-reload:
```bash
npm run dev
```
## Available Tools
### Core Ticket Operations
#### `freescout_get_ticket`
Fetch a FreeScout ticket with all its details and conversation threads.
**Parameters:**
- `ticket` (required): Ticket ID, number, or FreeScout URL
- `includeThreads` (optional): Include conversation threads (default: true)
**Natural Language Examples:**
- "Show me ticket #12345"
- "Get the details for FreeScout ticket 34811"
- "Fetch ticket https://support.example.com/conversation/12345"
- "What's in ticket 12345?"
- "Pull up the conversation for ticket #34811"
**Example:**
```javascript
{
"ticket": "12345",
"includeThreads": true
}
```
**Example: Fetching a FreeScout ticket with conversation threads**

#### `freescout_analyze_ticket`
Analyze a ticket to determine issue type, root cause, and suggested solutions.
**Parameters:**
- `ticket` (required): Ticket ID, number, or FreeScout URL
**Natural Language Examples:**
- "Analyze ticket #12345"
- "What kind of issue is ticket 34811?"
- "Can you analyze this ticket and tell me if it's a bug?"
- "Examine ticket #12345 and determine the root cause"
- "Is this ticket a bug or feature request?"
**Returns:**
- Customer information
- Issue description and classification
- Code snippets and error messages
- Reproducibility status
- Root cause analysis
- Bug vs feature request vs third-party issue determination
**Example: Intelligent ticket analysis with issue classification**

#### `freescout_add_note`
Add an internal note to a ticket for team communication.
**Parameters:**
- `ticket` (required): Ticket ID, number, or FreeScout URL
- `note` (required): The note content
- `userId` (optional): User ID for the note (defaults to env setting)
**Natural Language Examples:**
- "Add a note to ticket #12345 saying 'Reproduced on staging'"
- "Leave an internal note on this ticket"
- "Add a team note: 'Customer confirmed fix works'"
- "Note on ticket 34811: 'Escalating to development team'"
- "Add internal documentation to this ticket"
#### `freescout_update_ticket`
Update ticket status and/or assignment.
**Parameters:**
- `ticket` (required): Ticket ID, number, or FreeScout URL
- `status` (optional): New status ('active', 'pending', 'closed', 'spam')
- `assignTo` (optional): User ID to assign the ticket to
**Natural Language Examples:**
- "Close ticket #12345"
- "Mark ticket 34811 as pending"
- "Assign this ticket to user ID 2"
- "Set ticket status to active"
- "Update ticket #12345 status to closed and assign to user 1"
#### `freescout_create_draft_reply`
Create a draft reply in FreeScout that can be edited before sending. This tool lets the LLM generate the reply content and saves it directly to FreeScout as a draft. **Automatically converts Markdown formatting to HTML** for proper display in FreeScout.
**Parameters:**
- `ticket` (required): Ticket ID, number, or FreeScout URL
- `replyText` (required): The draft reply content (generated by the LLM, supports Markdown formatting)
- `userId` (optional): User ID creating the draft (defaults to env setting)
- `to` (optional): List of TO recipients. Omit to preserve existing recipients; pass `[]` to clear.
- `cc` (optional): List of CC recipients. Omit to preserve existing recipients; pass `[]` to clear.
- `bcc` (optional): List of BCC recipients. Omit to preserve existing recipients; pass `[]` to clear.
**Natural Language Examples:**
- "Create a draft reply for ticket #12345"
- "Draft a customer response for this ticket"
- "Generate and save a draft reply explaining the fix"
- "Write a draft response to the customer for ticket 34811"
- "Create a draft reply thanking the customer and explaining the solution"
If recipient fields are omitted, the server preserves the current conversation recipients from FreeScout when available. If FreeScout does not expose existing `to` recipients on the conversation, its normal default customer recipient behavior is preserved.
**Markdown Support:**
- **Bold text**: `**text**` or `__text__` → **text**
- _Italic text_: `*text*` or `_text_` → _text_
- `Code`: `` `code` `` → `code`
- Numbered lists: `1. item` → proper ordered lists
- Bullet lists: `- item` or `* item` → proper unordered lists
- Line breaks: Double newlines create paragraphs, single newlines create line breaks
**Workflow:**
1. Use `freescout_get_ticket_context` to get customer info and ticket details
2. Let the LLM craft a personalized reply using Markdown formatting
3. Use `freescout_create_draft_reply` to save the draft in FreeScout (Markdown automatically converted to HTML)
4. Review and edit the draft in FreeScout before sending
**Example: Draft reply workflow with personalized customer response**


#### `freescout_get_ticket_context`
Get ticket context and customer information to help craft personalized replies.
**Parameters:**
- `ticket` (required): Ticket ID, number, or FreeScout URL
**Natural Language Examples:**
- "Get context for ticket #12345 to write a reply"
- "I need customer info and ticket details for drafting a response"
- "Gather context for this ticket so I can write a personalized reply"
- "Pull customer information and issue details for ticket 34811"
- "Get ticket context to help craft a customer response"
**Returns:**
- Customer name and email
- Ticket subject and status
- Issue description and analysis
- Recent customer and team messages
- Analysis results (bug vs feature vs third-party issue)
#### `freescout_search_tickets`
Search for tickets across your FreeScout instance.
**Parameters:**
- `query` (required): Search query
- `status` (optional): Filter by status ('active', 'pending', 'closed', 'spam', 'all')
- `mailboxId` (optional): Filter by specific mailbox ID (searches all mailboxes if not specified)
**Natural Language Examples:**
- "Search for tickets containing 'OAuth error'"
- "Find all pending tickets with 'HighLevel' in them"
- "Search for closed ticketsWhat people ask about mcp-freescout
What is verygoodplugins/mcp-freescout?
+
verygoodplugins/mcp-freescout is mcp servers for the Claude AI ecosystem. An MCP (Model Context Protocol) server for FreeScout helpdesk ticket management and workflow automation. This server provides tools to interact with FreeScout tickets, analyze issues, manage responses, and integrate with Git workflows. It has 25 GitHub stars and its last recorded update is dated 2026-08-28.
How do I install mcp-freescout?
+
You can install mcp-freescout by cloning the repository (https://github.com/verygoodplugins/mcp-freescout) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is verygoodplugins/mcp-freescout safe to use?
+
Our security agent has analyzed verygoodplugins/mcp-freescout and assigned a Trust Score of 100/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.
Who maintains verygoodplugins/mcp-freescout?
+
verygoodplugins/mcp-freescout is maintained by verygoodplugins. The last recorded GitHub activity is dated 2026-08-28, with 1 open issues.
Are there alternatives to mcp-freescout?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy mcp-freescout to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/verygoodplugins-mcp-freescout)<a href="https://claudewave.com/repo/verygoodplugins-mcp-freescout"><img src="https://claudewave.com/api/badge/verygoodplugins-mcp-freescout" alt="Featured on ClaudeWave: verygoodplugins/mcp-freescout" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!