@aiwerk/mcp-bridge 1.7.2 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -0
- package/dist/bin/validate-recipe.d.ts +6 -0
- package/dist/bin/validate-recipe.js +33 -0
- package/dist/src/validate-recipe.d.ts +76 -0
- package/dist/src/validate-recipe.js +241 -0
- package/package.json +3 -2
- package/scripts/install-server.sh +96 -14
- package/servers/apify/recipe.json +41 -0
- package/servers/atlassian/recipe.json +60 -0
- package/servers/chrome-devtools/recipe.json +45 -0
- package/servers/github/recipe.json +55 -0
- package/servers/google-maps/recipe.json +48 -0
- package/servers/hetzner/recipe.json +49 -0
- package/servers/hostinger/recipe.json +47 -0
- package/servers/index.json +130 -120
- package/servers/linear/recipe.json +49 -0
- package/servers/miro/recipe.json +48 -0
- package/servers/notion/recipe.json +48 -0
- package/servers/stripe/recipe.json +48 -0
- package/servers/tavily/recipe.json +48 -0
- package/servers/todoist/recipe.json +48 -0
- package/servers/wise/recipe.json +49 -0
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 2,
|
|
3
|
+
"id": "chrome-devtools",
|
|
4
|
+
"name": "Chrome DevTools",
|
|
5
|
+
"description": "Control and inspect a live Chrome browser for automation, debugging, and performance analysis via the Chrome DevTools Protocol",
|
|
6
|
+
"repository": "https://github.com/ChromeDevTools/chrome-devtools-mcp",
|
|
7
|
+
|
|
8
|
+
"transports": [
|
|
9
|
+
{
|
|
10
|
+
"type": "stdio",
|
|
11
|
+
"command": "npx",
|
|
12
|
+
"args": ["-y", "chrome-devtools-mcp@0.20.0", "--autoConnect"],
|
|
13
|
+
"env": {}
|
|
14
|
+
}
|
|
15
|
+
],
|
|
16
|
+
|
|
17
|
+
"auth": {
|
|
18
|
+
"required": false,
|
|
19
|
+
"type": "none",
|
|
20
|
+
"envVars": [],
|
|
21
|
+
"instructions": "Requires Chrome >= 144 with remote debugging enabled at chrome://inspect/#remote-debugging. Chrome will show a permission dialog on each connection."
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
"install": {
|
|
25
|
+
"method": "npx",
|
|
26
|
+
"package": "chrome-devtools-mcp",
|
|
27
|
+
"version": "0.20.0"
|
|
28
|
+
},
|
|
29
|
+
|
|
30
|
+
"metadata": {
|
|
31
|
+
"homepage": "https://github.com/ChromeDevTools/chrome-devtools-mcp",
|
|
32
|
+
"author": "ChromeDevTools",
|
|
33
|
+
"tags": ["browser", "debugging", "automation", "devtools", "chrome"],
|
|
34
|
+
"category": "development",
|
|
35
|
+
"pricing": "free",
|
|
36
|
+
"maturity": "stable"
|
|
37
|
+
},
|
|
38
|
+
|
|
39
|
+
"capabilities": {
|
|
40
|
+
"tools": true,
|
|
41
|
+
"resources": false,
|
|
42
|
+
"prompts": false,
|
|
43
|
+
"sampling": false
|
|
44
|
+
}
|
|
45
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 2,
|
|
3
|
+
"id": "github",
|
|
4
|
+
"name": "GitHub",
|
|
5
|
+
"description": "GitHub repository management — repos, issues, PRs, code search, and more via the official GitHub MCP server",
|
|
6
|
+
"repository": "https://github.com/github/github-mcp-server",
|
|
7
|
+
|
|
8
|
+
"transports": [
|
|
9
|
+
{
|
|
10
|
+
"type": "stdio",
|
|
11
|
+
"command": "docker",
|
|
12
|
+
"args": [
|
|
13
|
+
"run",
|
|
14
|
+
"-i",
|
|
15
|
+
"--rm",
|
|
16
|
+
"-e",
|
|
17
|
+
"GITHUB_PERSONAL_ACCESS_TOKEN",
|
|
18
|
+
"ghcr.io/github/github-mcp-server"
|
|
19
|
+
],
|
|
20
|
+
"env": {
|
|
21
|
+
"GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_MCP_TOKEN}"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
|
|
26
|
+
"auth": {
|
|
27
|
+
"required": true,
|
|
28
|
+
"type": "api-key",
|
|
29
|
+
"envVars": ["GITHUB_MCP_TOKEN"],
|
|
30
|
+
"credentialsUrl": "https://github.com/settings/tokens",
|
|
31
|
+
"instructions": "Create a Personal Access Token at GitHub Settings > Developer settings > Personal access tokens. Grant repo, issues, and pull_requests scopes."
|
|
32
|
+
},
|
|
33
|
+
|
|
34
|
+
"install": {
|
|
35
|
+
"method": "docker",
|
|
36
|
+
"image": "ghcr.io/github/github-mcp-server",
|
|
37
|
+
"version": "latest"
|
|
38
|
+
},
|
|
39
|
+
|
|
40
|
+
"metadata": {
|
|
41
|
+
"homepage": "https://github.com/github/github-mcp-server",
|
|
42
|
+
"author": "GitHub",
|
|
43
|
+
"tags": ["git", "repos", "issues", "pull-requests", "code-review"],
|
|
44
|
+
"category": "development",
|
|
45
|
+
"pricing": "byok",
|
|
46
|
+
"maturity": "stable"
|
|
47
|
+
},
|
|
48
|
+
|
|
49
|
+
"capabilities": {
|
|
50
|
+
"tools": true,
|
|
51
|
+
"resources": false,
|
|
52
|
+
"prompts": false,
|
|
53
|
+
"sampling": false
|
|
54
|
+
}
|
|
55
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 2,
|
|
3
|
+
"id": "google-maps",
|
|
4
|
+
"name": "Google Maps",
|
|
5
|
+
"description": "Google Maps integration for places search, geocoding, directions, and distance matrix via the official MCP server",
|
|
6
|
+
"repository": "https://github.com/modelcontextprotocol/servers",
|
|
7
|
+
|
|
8
|
+
"transports": [
|
|
9
|
+
{
|
|
10
|
+
"type": "stdio",
|
|
11
|
+
"command": "npx",
|
|
12
|
+
"args": ["-y", "@modelcontextprotocol/server-google-maps"],
|
|
13
|
+
"env": {
|
|
14
|
+
"GOOGLE_MAPS_API_KEY": "${GOOGLE_MAPS_API_KEY}"
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
],
|
|
18
|
+
|
|
19
|
+
"auth": {
|
|
20
|
+
"required": true,
|
|
21
|
+
"type": "api-key",
|
|
22
|
+
"envVars": ["GOOGLE_MAPS_API_KEY"],
|
|
23
|
+
"credentialsUrl": "https://console.cloud.google.com/apis/credentials",
|
|
24
|
+
"instructions": "Create an API key in Google Cloud Console and enable the Maps JavaScript API, Places API, Geocoding API, and Directions API."
|
|
25
|
+
},
|
|
26
|
+
|
|
27
|
+
"install": {
|
|
28
|
+
"method": "npx",
|
|
29
|
+
"package": "@modelcontextprotocol/server-google-maps",
|
|
30
|
+
"version": "latest"
|
|
31
|
+
},
|
|
32
|
+
|
|
33
|
+
"metadata": {
|
|
34
|
+
"homepage": "https://developers.google.com/maps",
|
|
35
|
+
"author": "Anthropic / MCP Community",
|
|
36
|
+
"tags": ["maps", "geocoding", "places", "directions", "navigation"],
|
|
37
|
+
"category": "other",
|
|
38
|
+
"pricing": "byok",
|
|
39
|
+
"maturity": "stable"
|
|
40
|
+
},
|
|
41
|
+
|
|
42
|
+
"capabilities": {
|
|
43
|
+
"tools": true,
|
|
44
|
+
"resources": false,
|
|
45
|
+
"prompts": false,
|
|
46
|
+
"sampling": false
|
|
47
|
+
}
|
|
48
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 2,
|
|
3
|
+
"id": "hetzner",
|
|
4
|
+
"name": "Hetzner Cloud",
|
|
5
|
+
"description": "Manage Hetzner Cloud infrastructure — servers, networks, load balancers, volumes, firewalls, and more via the Hetzner Cloud API",
|
|
6
|
+
"repository": "https://github.com/valerius21/hetzner-mcp",
|
|
7
|
+
|
|
8
|
+
"transports": [
|
|
9
|
+
{
|
|
10
|
+
"type": "stdio",
|
|
11
|
+
"command": "node",
|
|
12
|
+
"args": ["dist/index.js"],
|
|
13
|
+
"env": {
|
|
14
|
+
"HCLOUD_TOKEN": "${HETZNER_API_TOKEN}"
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
],
|
|
18
|
+
|
|
19
|
+
"auth": {
|
|
20
|
+
"required": true,
|
|
21
|
+
"type": "api-key",
|
|
22
|
+
"envVars": ["HETZNER_API_TOKEN"],
|
|
23
|
+
"credentialsUrl": "https://console.hetzner.cloud/",
|
|
24
|
+
"instructions": "Create an API token in the Hetzner Cloud Console under your project > Security > API Tokens."
|
|
25
|
+
},
|
|
26
|
+
|
|
27
|
+
"install": {
|
|
28
|
+
"method": "git",
|
|
29
|
+
"repository": "https://github.com/valerius21/hetzner-mcp",
|
|
30
|
+
"buildCommand": "npm install && npm run build",
|
|
31
|
+
"version": "latest"
|
|
32
|
+
},
|
|
33
|
+
|
|
34
|
+
"metadata": {
|
|
35
|
+
"homepage": "https://www.hetzner.com/cloud",
|
|
36
|
+
"author": "valerius21",
|
|
37
|
+
"tags": ["cloud", "infrastructure", "servers", "vps", "hetzner"],
|
|
38
|
+
"category": "infrastructure",
|
|
39
|
+
"pricing": "byok",
|
|
40
|
+
"maturity": "stable"
|
|
41
|
+
},
|
|
42
|
+
|
|
43
|
+
"capabilities": {
|
|
44
|
+
"tools": true,
|
|
45
|
+
"resources": false,
|
|
46
|
+
"prompts": false,
|
|
47
|
+
"sampling": false
|
|
48
|
+
}
|
|
49
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 2,
|
|
3
|
+
"id": "hostinger",
|
|
4
|
+
"name": "Hostinger",
|
|
5
|
+
"description": "Web hosting management via Hostinger API — manage domains, hosting plans, email accounts, and website settings",
|
|
6
|
+
|
|
7
|
+
"transports": [
|
|
8
|
+
{
|
|
9
|
+
"type": "stdio",
|
|
10
|
+
"command": "npx",
|
|
11
|
+
"args": ["-y", "@anthropic-pb/hostinger-mcp-server"],
|
|
12
|
+
"env": {
|
|
13
|
+
"HOSTINGER_API_TOKEN": "${HOSTINGER_API_TOKEN}"
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
|
|
18
|
+
"auth": {
|
|
19
|
+
"required": true,
|
|
20
|
+
"type": "api-key",
|
|
21
|
+
"envVars": ["HOSTINGER_API_TOKEN"],
|
|
22
|
+
"credentialsUrl": "https://hpanel.hostinger.com/api",
|
|
23
|
+
"instructions": "Generate an API token in the Hostinger hPanel under API section."
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
"install": {
|
|
27
|
+
"method": "npx",
|
|
28
|
+
"package": "@anthropic-pb/hostinger-mcp-server",
|
|
29
|
+
"version": "latest"
|
|
30
|
+
},
|
|
31
|
+
|
|
32
|
+
"metadata": {
|
|
33
|
+
"homepage": "https://www.hostinger.com/",
|
|
34
|
+
"author": "Anthropic / Hostinger",
|
|
35
|
+
"tags": ["hosting", "domains", "web-hosting", "email", "dns"],
|
|
36
|
+
"category": "infrastructure",
|
|
37
|
+
"pricing": "byok",
|
|
38
|
+
"maturity": "stable"
|
|
39
|
+
},
|
|
40
|
+
|
|
41
|
+
"capabilities": {
|
|
42
|
+
"tools": true,
|
|
43
|
+
"resources": false,
|
|
44
|
+
"prompts": false,
|
|
45
|
+
"sampling": false
|
|
46
|
+
}
|
|
47
|
+
}
|
package/servers/index.json
CHANGED
|
@@ -1,149 +1,159 @@
|
|
|
1
1
|
{
|
|
2
|
-
"schemaVersion":
|
|
3
|
-
"
|
|
4
|
-
|
|
5
|
-
"description": "Control and inspect a live Chrome browser",
|
|
6
|
-
"transport": "stdio",
|
|
7
|
-
"authRequired": false,
|
|
8
|
-
"homepage": "https://github.com/ChromeDevTools/chrome-devtools-mcp",
|
|
9
|
-
"installMethod": "npx",
|
|
10
|
-
"envVars": [],
|
|
11
|
-
"notes": "Requires Chrome >= 144 with chrome://inspect/#remote-debugging enabled"
|
|
12
|
-
},
|
|
2
|
+
"schemaVersion": 2,
|
|
3
|
+
"generatedAt": "2026-03-15T12:37:00Z",
|
|
4
|
+
"recipes": {
|
|
13
5
|
"apify": {
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
|
|
6
|
+
"name": "Apify",
|
|
7
|
+
"description": "Web scraping and automation platform with 3000+ ready-made actors for data extraction, browser automation, and crawling",
|
|
8
|
+
"category": "automation",
|
|
9
|
+
"tags": ["scraping", "automation", "web", "crawling", "actors"],
|
|
10
|
+
"auth": { "required": true, "type": "bearer" },
|
|
11
|
+
"transports": ["streamable-http"],
|
|
12
|
+
"maturity": "stable",
|
|
13
|
+
"verified": false
|
|
22
14
|
},
|
|
23
15
|
"atlassian": {
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
16
|
+
"name": "Atlassian (Confluence + Jira)",
|
|
17
|
+
"description": "Confluence wiki and Jira project management — search, create, and update pages and issues",
|
|
18
|
+
"category": "productivity",
|
|
19
|
+
"tags": ["wiki", "project-management", "confluence", "jira", "atlassian"],
|
|
20
|
+
"auth": { "required": true, "type": "api-key" },
|
|
21
|
+
"transports": ["stdio"],
|
|
22
|
+
"install": { "method": "uvx" },
|
|
23
|
+
"maturity": "stable",
|
|
24
|
+
"verified": false
|
|
25
|
+
},
|
|
26
|
+
"chrome-devtools": {
|
|
27
|
+
"name": "Chrome DevTools",
|
|
28
|
+
"description": "Control and inspect a live Chrome browser for automation, debugging, and performance analysis via the Chrome DevTools Protocol",
|
|
29
|
+
"category": "development",
|
|
30
|
+
"tags": ["browser", "debugging", "automation", "devtools", "chrome"],
|
|
31
|
+
"auth": { "required": false, "type": "none" },
|
|
32
|
+
"transports": ["stdio"],
|
|
33
|
+
"install": { "method": "npx" },
|
|
34
|
+
"maturity": "stable",
|
|
35
|
+
"verified": false
|
|
37
36
|
},
|
|
38
37
|
"github": {
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
|
|
46
|
-
|
|
38
|
+
"name": "GitHub",
|
|
39
|
+
"description": "GitHub repository management — repos, issues, PRs, code search, and more via the official GitHub MCP server",
|
|
40
|
+
"category": "development",
|
|
41
|
+
"tags": ["git", "repos", "issues", "pull-requests", "code-review"],
|
|
42
|
+
"auth": { "required": true, "type": "api-key" },
|
|
43
|
+
"transports": ["stdio"],
|
|
44
|
+
"install": { "method": "docker" },
|
|
45
|
+
"maturity": "stable",
|
|
46
|
+
"verified": false
|
|
47
47
|
},
|
|
48
48
|
"google-maps": {
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
|
|
56
|
-
|
|
49
|
+
"name": "Google Maps",
|
|
50
|
+
"description": "Google Maps integration for places search, geocoding, directions, and distance matrix via the official MCP server",
|
|
51
|
+
"category": "other",
|
|
52
|
+
"tags": ["maps", "geocoding", "places", "directions", "navigation"],
|
|
53
|
+
"auth": { "required": true, "type": "api-key" },
|
|
54
|
+
"transports": ["stdio"],
|
|
55
|
+
"install": { "method": "npx" },
|
|
56
|
+
"maturity": "stable",
|
|
57
|
+
"verified": false
|
|
57
58
|
},
|
|
58
59
|
"hetzner": {
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
|
|
66
|
-
|
|
60
|
+
"name": "Hetzner Cloud",
|
|
61
|
+
"description": "Manage Hetzner Cloud infrastructure — servers, networks, load balancers, volumes, firewalls, and more via the Hetzner Cloud API",
|
|
62
|
+
"category": "infrastructure",
|
|
63
|
+
"tags": ["cloud", "infrastructure", "servers", "vps", "hetzner"],
|
|
64
|
+
"auth": { "required": true, "type": "api-key" },
|
|
65
|
+
"transports": ["stdio"],
|
|
66
|
+
"install": { "method": "git" },
|
|
67
|
+
"maturity": "stable",
|
|
68
|
+
"verified": false
|
|
67
69
|
},
|
|
68
70
|
"hostinger": {
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
|
|
76
|
-
|
|
71
|
+
"name": "Hostinger",
|
|
72
|
+
"description": "Web hosting management via Hostinger API — manage domains, hosting plans, email accounts, and website settings",
|
|
73
|
+
"category": "infrastructure",
|
|
74
|
+
"tags": ["hosting", "domains", "web-hosting", "email", "dns"],
|
|
75
|
+
"auth": { "required": true, "type": "api-key" },
|
|
76
|
+
"transports": ["stdio"],
|
|
77
|
+
"install": { "method": "npx" },
|
|
78
|
+
"maturity": "stable",
|
|
79
|
+
"verified": false
|
|
77
80
|
},
|
|
78
81
|
"linear": {
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
|
|
86
|
-
|
|
82
|
+
"name": "Linear",
|
|
83
|
+
"description": "Linear project management — create, update, and search issues, projects, and teams via the Linear API",
|
|
84
|
+
"category": "productivity",
|
|
85
|
+
"tags": ["project-management", "issues", "tasks", "teams", "agile"],
|
|
86
|
+
"auth": { "required": true, "type": "api-key" },
|
|
87
|
+
"transports": ["stdio"],
|
|
88
|
+
"install": { "method": "git" },
|
|
89
|
+
"maturity": "stable",
|
|
90
|
+
"verified": false
|
|
87
91
|
},
|
|
88
92
|
"miro": {
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
|
|
96
|
-
|
|
93
|
+
"name": "Miro",
|
|
94
|
+
"description": "Collaborative whiteboard — create and manipulate Miro boards, sticky notes, cards, connectors, and shapes via the Miro API",
|
|
95
|
+
"category": "productivity",
|
|
96
|
+
"tags": ["whiteboard", "collaboration", "diagrams", "brainstorming", "visual"],
|
|
97
|
+
"auth": { "required": true, "type": "api-key" },
|
|
98
|
+
"transports": ["stdio"],
|
|
99
|
+
"install": { "method": "npx" },
|
|
100
|
+
"maturity": "stable",
|
|
101
|
+
"verified": false
|
|
97
102
|
},
|
|
98
103
|
"notion": {
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
"
|
|
102
|
-
"
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
-
|
|
106
|
-
|
|
104
|
+
"name": "Notion",
|
|
105
|
+
"description": "Notion workspace integration — read, create, and update pages, databases, blocks, and comments via the official Notion MCP server",
|
|
106
|
+
"category": "productivity",
|
|
107
|
+
"tags": ["notes", "databases", "wiki", "knowledge-base", "productivity"],
|
|
108
|
+
"auth": { "required": true, "type": "api-key" },
|
|
109
|
+
"transports": ["stdio"],
|
|
110
|
+
"install": { "method": "npx" },
|
|
111
|
+
"maturity": "stable",
|
|
112
|
+
"verified": false
|
|
107
113
|
},
|
|
108
114
|
"stripe": {
|
|
109
|
-
"
|
|
110
|
-
"
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
"
|
|
114
|
-
"
|
|
115
|
-
|
|
116
|
-
|
|
115
|
+
"name": "Stripe",
|
|
116
|
+
"description": "Stripe payments and billing — manage customers, subscriptions, payment intents, invoices, and more via the official Stripe MCP server",
|
|
117
|
+
"category": "finance",
|
|
118
|
+
"tags": ["payments", "billing", "subscriptions", "invoices", "fintech"],
|
|
119
|
+
"auth": { "required": true, "type": "api-key" },
|
|
120
|
+
"transports": ["stdio"],
|
|
121
|
+
"install": { "method": "npx" },
|
|
122
|
+
"maturity": "stable",
|
|
123
|
+
"verified": false
|
|
117
124
|
},
|
|
118
125
|
"tavily": {
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"
|
|
122
|
-
"
|
|
123
|
-
"
|
|
124
|
-
"
|
|
125
|
-
|
|
126
|
-
|
|
126
|
+
"name": "Tavily",
|
|
127
|
+
"description": "AI-optimized web search — retrieve accurate, real-time search results and extract content from URLs tailored for AI agents",
|
|
128
|
+
"category": "search",
|
|
129
|
+
"tags": ["search", "web", "ai-search", "research", "rag"],
|
|
130
|
+
"auth": { "required": true, "type": "api-key" },
|
|
131
|
+
"transports": ["stdio"],
|
|
132
|
+
"install": { "method": "npx" },
|
|
133
|
+
"maturity": "stable",
|
|
134
|
+
"verified": false
|
|
127
135
|
},
|
|
128
136
|
"todoist": {
|
|
129
|
-
"
|
|
130
|
-
"
|
|
131
|
-
"
|
|
132
|
-
"
|
|
133
|
-
"
|
|
134
|
-
"
|
|
135
|
-
|
|
136
|
-
|
|
137
|
+
"name": "Todoist",
|
|
138
|
+
"description": "Task management with natural language — create, update, complete, and search tasks and projects in Todoist",
|
|
139
|
+
"category": "productivity",
|
|
140
|
+
"tags": ["tasks", "todo", "productivity", "project-management", "gtd"],
|
|
141
|
+
"auth": { "required": true, "type": "api-key" },
|
|
142
|
+
"transports": ["stdio"],
|
|
143
|
+
"install": { "method": "npx" },
|
|
144
|
+
"maturity": "stable",
|
|
145
|
+
"verified": false
|
|
137
146
|
},
|
|
138
147
|
"wise": {
|
|
139
|
-
"
|
|
140
|
-
"
|
|
141
|
-
"
|
|
142
|
-
"
|
|
143
|
-
"
|
|
144
|
-
"
|
|
145
|
-
|
|
146
|
-
|
|
148
|
+
"name": "Wise",
|
|
149
|
+
"description": "International money transfers and multi-currency account management via the Wise (TransferWise) API",
|
|
150
|
+
"category": "finance",
|
|
151
|
+
"tags": ["payments", "transfers", "international", "currency", "fintech"],
|
|
152
|
+
"auth": { "required": true, "type": "api-key" },
|
|
153
|
+
"transports": ["stdio"],
|
|
154
|
+
"install": { "method": "git" },
|
|
155
|
+
"maturity": "stable",
|
|
156
|
+
"verified": false
|
|
147
157
|
}
|
|
148
158
|
}
|
|
149
159
|
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 2,
|
|
3
|
+
"id": "linear",
|
|
4
|
+
"name": "Linear",
|
|
5
|
+
"description": "Linear project management — create, update, and search issues, projects, and teams via the Linear API",
|
|
6
|
+
"repository": "https://github.com/cline/linear-mcp",
|
|
7
|
+
|
|
8
|
+
"transports": [
|
|
9
|
+
{
|
|
10
|
+
"type": "stdio",
|
|
11
|
+
"command": "node",
|
|
12
|
+
"args": ["dist/index.js"],
|
|
13
|
+
"env": {
|
|
14
|
+
"LINEAR_API_KEY": "${LINEAR_API_KEY}"
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
],
|
|
18
|
+
|
|
19
|
+
"auth": {
|
|
20
|
+
"required": true,
|
|
21
|
+
"type": "api-key",
|
|
22
|
+
"envVars": ["LINEAR_API_KEY"],
|
|
23
|
+
"credentialsUrl": "https://linear.app/settings/api",
|
|
24
|
+
"instructions": "Create a Personal API key in Linear Settings > API."
|
|
25
|
+
},
|
|
26
|
+
|
|
27
|
+
"install": {
|
|
28
|
+
"method": "git",
|
|
29
|
+
"repository": "https://github.com/cline/linear-mcp",
|
|
30
|
+
"buildCommand": "npm install && npm run build",
|
|
31
|
+
"version": "latest"
|
|
32
|
+
},
|
|
33
|
+
|
|
34
|
+
"metadata": {
|
|
35
|
+
"homepage": "https://linear.app/",
|
|
36
|
+
"author": "Cline",
|
|
37
|
+
"tags": ["project-management", "issues", "tasks", "teams", "agile"],
|
|
38
|
+
"category": "productivity",
|
|
39
|
+
"pricing": "byok",
|
|
40
|
+
"maturity": "stable"
|
|
41
|
+
},
|
|
42
|
+
|
|
43
|
+
"capabilities": {
|
|
44
|
+
"tools": true,
|
|
45
|
+
"resources": false,
|
|
46
|
+
"prompts": false,
|
|
47
|
+
"sampling": false
|
|
48
|
+
}
|
|
49
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 2,
|
|
3
|
+
"id": "miro",
|
|
4
|
+
"name": "Miro",
|
|
5
|
+
"description": "Collaborative whiteboard — create and manipulate Miro boards, sticky notes, cards, connectors, and shapes via the Miro API",
|
|
6
|
+
"repository": "https://github.com/evalstate/mcp-miro",
|
|
7
|
+
|
|
8
|
+
"transports": [
|
|
9
|
+
{
|
|
10
|
+
"type": "stdio",
|
|
11
|
+
"command": "npx",
|
|
12
|
+
"args": ["-y", "@llmindset/mcp-miro", "--token", "${MIRO_API_TOKEN}"],
|
|
13
|
+
"env": {
|
|
14
|
+
"MIRO_API_TOKEN": "${MIRO_API_TOKEN}"
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
],
|
|
18
|
+
|
|
19
|
+
"auth": {
|
|
20
|
+
"required": true,
|
|
21
|
+
"type": "api-key",
|
|
22
|
+
"envVars": ["MIRO_API_TOKEN"],
|
|
23
|
+
"credentialsUrl": "https://miro.com/app/settings/user-profile/apps",
|
|
24
|
+
"instructions": "Create a Developer App in Miro Settings > Apps and copy the OAuth token."
|
|
25
|
+
},
|
|
26
|
+
|
|
27
|
+
"install": {
|
|
28
|
+
"method": "npx",
|
|
29
|
+
"package": "@llmindset/mcp-miro",
|
|
30
|
+
"version": "latest"
|
|
31
|
+
},
|
|
32
|
+
|
|
33
|
+
"metadata": {
|
|
34
|
+
"homepage": "https://miro.com/",
|
|
35
|
+
"author": "evalstate",
|
|
36
|
+
"tags": ["whiteboard", "collaboration", "diagrams", "brainstorming", "visual"],
|
|
37
|
+
"category": "productivity",
|
|
38
|
+
"pricing": "byok",
|
|
39
|
+
"maturity": "stable"
|
|
40
|
+
},
|
|
41
|
+
|
|
42
|
+
"capabilities": {
|
|
43
|
+
"tools": true,
|
|
44
|
+
"resources": false,
|
|
45
|
+
"prompts": false,
|
|
46
|
+
"sampling": false
|
|
47
|
+
}
|
|
48
|
+
}
|