File size: 3,583 Bytes
3a235a9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
    "mcpServers": {
        "e2b-server": {
            "command": "npx",
            "args": [
                "-y",
                "@e2b/mcp-server"
            ],
            "env": {
                "E2B_API_KEY": "${E2B_API_KEY}",
                "SESSION_REQUEST_CONNECT_TIMEOUT": "120"
            }
        },
        "filesystem": {
            "command": "npx",
            "args": [
                "-y",
                "@modelcontextprotocol/server-filesystem",
                "${FILESYSTEM_SERVER_WORKDIR}"
            ]
        },
        "terminal-controller": {
            "command": "python",
            "args": [
                "-m",
                "terminal_controller"
            ]
        },
        "calculator": {
            "command": "python",
            "args": [
                "-m",
                "mcp_server_calculator"
            ]
        },
        "excel": {
            "command": "npx",
            "args": [
                "--yes",
                "@negokaz/excel-mcp-server"
            ],
            "env": {
                "EXCEL_MCP_PAGING_CELLS_LIMIT": "4000"
            }
        },
        "playwright": {
            "command": "npx",
            "args": [
                "-y",
                "@executeautomation/playwright-mcp-server"
            ]
        },
        "google-search": {
            "command": "npx",
            "args": [
                "-y",
                "@adenot/mcp-google-search"
            ],
            "env": {
                "GOOGLE_API_KEY": "${GOOGLE_API_KEY}",
                "GOOGLE_SEARCH_ENGINE_ID": "${GOOGLE_SEARCH_ENGINE_ID}"
            }
        },
        "ms-playwright": {
            "command": "npx",
            "args": [
                "@playwright/mcp@latest",
                "--no-sandbox",
                "--headless"
            ],
            "env": {
                "PLAYWRIGHT_TIMEOUT": "120000",
                "SESSION_REQUEST_CONNECT_TIMEOUT": "120"
            }
        },
        "audio_server": {
            "command": "python",
            "args": [
                "-m",
                "mcp_servers.audio_server"
            ]
        },
        "image_server": {
            "command": "python",
            "args": [
                "-m",
                "mcp_servers.image_server"
            ]
        },
        "youtube_server": {
            "command": "python",
            "args": [
                "-m",
                "mcp_servers.youtube_server"
            ]
        },
        "video_server": {
            "command": "python",
            "args": [
                "-m",
                "mcp_servers.video_server"
            ]
        },
        "search_server": {
            "command": "python",
            "args": [
                "-m",
                "mcp_servers.search_server"
            ]
        },
        "download_server": {
            "command": "python",
            "args": [
                "-m",
                "mcp_servers.download_server"
            ]
        },
        "document_server": {
            "command": "python",
            "args": [
                "-m",
                "mcp_servers.document_server"
            ]
        },
        "browser_server": {
            "command": "python",
            "args": [
                "-m",
                "mcp_servers.browser_server"
            ]
        },
        "reasoning_server": {
            "command": "python",
            "args": [
                "-m",
                "mcp_servers.reasoning_server"
            ]
        }
    }
}