-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcp.json
More file actions
50 lines (50 loc) · 1.5 KB
/
mcp.json
File metadata and controls
50 lines (50 loc) · 1.5 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
{
"mcpServers": {
"adobe-proxy": {
"command": "T:\\projects\\mcp_servers\\adobe-controller\\adobe-mcp-rs\\target\\debug\\adobe-proxy.exe",
"args": ["--host", "127.0.0.1", "--port", "3001"],
"env": {
"RUST_LOG": "info"
},
"description": "Rust proxy server for Adobe UXP plugins"
},
"adobe-acrobat": {
"command": "T:\\projects\\mcp_servers\\adobe-controller\\adobe-mcp-rs\\target\\debug\\acrobat-mcp.exe",
"args": ["--proxy-url", "ws://127.0.0.1:3001", "--timeout", "30000"],
"env": {
"ACROBAT_PROXY_URL": "ws://127.0.0.1:3001",
"ACROBAT_TIMEOUT": "30000",
"RUST_LOG": "info"
},
"description": "Adobe Acrobat MCP (Rust)"
},
"adobe-photoshop": {
"command": "adobe-photoshop",
"env": {
"ADOBE_MCP_PROXY_URL": "http://localhost:3001"
},
"description": "Adobe Photoshop MCP (Python)"
},
"adobe-premiere": {
"command": "adobe-premiere",
"env": {
"ADOBE_MCP_PROXY_URL": "http://localhost:3001"
},
"description": "Adobe Premiere MCP (Python)"
},
"adobe-illustrator": {
"command": "adobe-illustrator",
"env": {
"ADOBE_MCP_PROXY_URL": "http://localhost:3001"
},
"description": "Adobe Illustrator MCP (Python)"
},
"adobe-indesign": {
"command": "adobe-indesign",
"env": {
"ADOBE_MCP_PROXY_URL": "http://localhost:3001"
},
"description": "Adobe InDesign MCP (Python)"
}
}
}