-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
94 lines (94 loc) · 2.81 KB
/
manifest.json
File metadata and controls
94 lines (94 loc) · 2.81 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
88
89
90
91
92
93
94
{
"manifest_version": "0.3",
"name": "@phrase/phrase-mcp-server",
"display_name": "Phrase",
"version": "0.6.0",
"description": "Use Phrase APIs from any MCP client with ready-to-use tools for Phrase Strings and Phrase TMS.",
"long_description": "Automates localization workflows across Phrase Strings and Phrase TMS. Covers projects, jobs, locales, translation keys, branches, glossaries, and file uploads/downloads.",
"author": {
"name": "Phrase",
"url": "https://phrase.com"
},
"repository": {
"type": "git",
"url": "https://github.com/phrase/phrase-mcp-server"
},
"homepage": "https://phrase.com",
"documentation": "https://github.com/phrase/phrase-mcp-server#readme",
"support": "https://github.com/phrase/phrase-mcp-server/issues",
"icon": "icon.png",
"license": "MIT",
"keywords": [
"phrase",
"localization",
"i18n",
"translation",
"strings",
"tms",
"mcp"
],
"privacy_policies": [
"https://phrase.com/privacy"
],
"tools_generated": true,
"server": {
"type": "node",
"entry_point": "dist/index.js",
"mcp_config": {
"command": "npx",
"args": [
"-y",
"@phrase/phrase-mcp-server"
],
"env": {
"PHRASE_STRINGS_TOKEN": "${user_config.strings_token}",
"PHRASE_TMS_TOKEN": "${user_config.tms_token}",
"PHRASE_BQE_TOKEN": "${user_config.bqe_token}",
"PHRASE_REGION": "${user_config.region}",
"PHRASE_ENABLED_PRODUCTS": "${user_config.enabled_products}"
}
}
},
"user_config": {
"strings_token": {
"type": "string",
"title": "Phrase Strings API Token",
"description": "Required for Strings tools. Create one at app.phrase.com → Account Settings → API Tokens.",
"sensitive": true,
"required": false
},
"tms_token": {
"type": "string",
"title": "Phrase TMS API Token",
"description": "Required for TMS tools. Create one in your Phrase TMS account settings.",
"sensitive": true,
"required": false
},
"bqe_token": {
"type": "string",
"title": "Phrase Quality Evaluator API Token",
"description": "Required for Quality Evaluator (BQE) tools. Create one at app.phrase.com → Account Settings → API Tokens.",
"sensitive": true,
"required": false
},
"region": {
"type": "string",
"title": "Region",
"description": "Your Phrase data region: 'eu' or 'us'.",
"default": "eu",
"required": false
},
"enabled_products": {
"type": "string",
"title": "Enabled Products",
"description": "Comma-separated list of products to enable: any subset of 'tms' 'strings', 'bqe'.",
"default": "strings,tms,bqe",
"required": false
}
},
"compatibility": {
"runtimes": {
"node": ">=20.0.0"
}
}
}