-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathserver.json
More file actions
87 lines (87 loc) · 2.71 KB
/
Copy pathserver.json
File metadata and controls
87 lines (87 loc) · 2.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.verygoodplugins/mcp-freescout",
"title": "MCP FreeScout",
"description": "FreeScout ticket management with AI-powered analysis, search filters, and structured outputs.",
"version": "2.0.1",
"websiteUrl": "https://verygoodplugins.com/?utm_source=mcp-registry",
"repository": {
"url": "https://github.com/verygoodplugins/mcp-freescout",
"source": "github"
},
"license": "GPL-3.0",
"authors": [
{
"name": "Very Good Plugins",
"url": "https://verygoodplugins.com"
}
],
"packages": [
{
"registryType": "npm",
"identifier": "@verygoodplugins/mcp-freescout",
"version": "2.0.1",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "FREESCOUT_URL",
"description": "Your FreeScout instance URL (e.g., https://support.example.com)",
"isRequired": true,
"format": "string",
"isSecret": false
},
{
"name": "FREESCOUT_API_KEY",
"description": "FreeScout API key with read/write permissions",
"isRequired": true,
"format": "string",
"isSecret": true
},
{
"name": "FREESCOUT_DEFAULT_USER_ID",
"description": "Default user ID for ticket operations",
"isRequired": false,
"format": "string",
"isSecret": false
}
]
}
],
"tools": [
{
"name": "freescout_get_ticket",
"description": "Fetch a FreeScout ticket by ID or URL with full thread history"
},
{
"name": "freescout_analyze_ticket",
"description": "Analyze ticket to determine issue type, root cause, and suggested solution"
},
{
"name": "freescout_search_tickets",
"description": "Search tickets with explicit filters: assignee ('unassigned'|'any'|userId), status, updatedSince/createdSince (supports '7d', '24h'), pagination"
},
{
"name": "freescout_add_note",
"description": "Add internal note to a ticket"
},
{
"name": "freescout_update_ticket",
"description": "Update ticket status and/or assignment"
},
{
"name": "freescout_create_draft_reply",
"description": "Create a draft reply for human review before sending"
},
{
"name": "freescout_get_ticket_context",
"description": "Get ticket context and customer info for personalized replies"
},
{
"name": "freescout_get_mailboxes",
"description": "List available FreeScout mailboxes"
}
],
"keywords": ["freescout", "helpdesk", "ticket-management", "customer-support", "automation"]
}