@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,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 2,
|
|
3
|
+
"id": "notion",
|
|
4
|
+
"name": "Notion",
|
|
5
|
+
"description": "Notion workspace integration — read, create, and update pages, databases, blocks, and comments via the official Notion MCP server",
|
|
6
|
+
"repository": "https://github.com/makenotion/notion-mcp-server",
|
|
7
|
+
|
|
8
|
+
"transports": [
|
|
9
|
+
{
|
|
10
|
+
"type": "stdio",
|
|
11
|
+
"command": "npx",
|
|
12
|
+
"args": ["-y", "@notionhq/notion-mcp-server"],
|
|
13
|
+
"env": {
|
|
14
|
+
"NOTION_TOKEN": "${NOTION_API_KEY}"
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
],
|
|
18
|
+
|
|
19
|
+
"auth": {
|
|
20
|
+
"required": true,
|
|
21
|
+
"type": "api-key",
|
|
22
|
+
"envVars": ["NOTION_API_KEY"],
|
|
23
|
+
"credentialsUrl": "https://www.notion.so/my-integrations",
|
|
24
|
+
"instructions": "Create a new integration at Notion's My Integrations page and copy the Internal Integration Secret. Then share your Notion pages or databases with the integration."
|
|
25
|
+
},
|
|
26
|
+
|
|
27
|
+
"install": {
|
|
28
|
+
"method": "npx",
|
|
29
|
+
"package": "@notionhq/notion-mcp-server",
|
|
30
|
+
"version": "latest"
|
|
31
|
+
},
|
|
32
|
+
|
|
33
|
+
"metadata": {
|
|
34
|
+
"homepage": "https://www.notion.so/",
|
|
35
|
+
"author": "Notion",
|
|
36
|
+
"tags": ["notes", "databases", "wiki", "knowledge-base", "productivity"],
|
|
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
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 2,
|
|
3
|
+
"id": "stripe",
|
|
4
|
+
"name": "Stripe",
|
|
5
|
+
"description": "Stripe payments and billing — manage customers, subscriptions, payment intents, invoices, and more via the official Stripe MCP server",
|
|
6
|
+
"repository": "https://github.com/stripe/agent-toolkit",
|
|
7
|
+
|
|
8
|
+
"transports": [
|
|
9
|
+
{
|
|
10
|
+
"type": "stdio",
|
|
11
|
+
"command": "npx",
|
|
12
|
+
"args": ["-y", "@stripe/mcp", "--tools=all", "--api-key=${STRIPE_API_KEY}"],
|
|
13
|
+
"env": {
|
|
14
|
+
"STRIPE_API_KEY": "${STRIPE_API_KEY}"
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
],
|
|
18
|
+
|
|
19
|
+
"auth": {
|
|
20
|
+
"required": true,
|
|
21
|
+
"type": "api-key",
|
|
22
|
+
"envVars": ["STRIPE_API_KEY"],
|
|
23
|
+
"credentialsUrl": "https://dashboard.stripe.com/apikeys",
|
|
24
|
+
"instructions": "Copy your Secret API key from the Stripe Dashboard > Developers > API keys. Use a restricted key for production to limit permissions."
|
|
25
|
+
},
|
|
26
|
+
|
|
27
|
+
"install": {
|
|
28
|
+
"method": "npx",
|
|
29
|
+
"package": "@stripe/mcp",
|
|
30
|
+
"version": "latest"
|
|
31
|
+
},
|
|
32
|
+
|
|
33
|
+
"metadata": {
|
|
34
|
+
"homepage": "https://stripe.com/",
|
|
35
|
+
"author": "Stripe",
|
|
36
|
+
"tags": ["payments", "billing", "subscriptions", "invoices", "fintech"],
|
|
37
|
+
"category": "finance",
|
|
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,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 2,
|
|
3
|
+
"id": "tavily",
|
|
4
|
+
"name": "Tavily",
|
|
5
|
+
"description": "AI-optimized web search — retrieve accurate, real-time search results and extract content from URLs tailored for AI agents",
|
|
6
|
+
"repository": "https://github.com/tavily-ai/tavily-mcp",
|
|
7
|
+
|
|
8
|
+
"transports": [
|
|
9
|
+
{
|
|
10
|
+
"type": "stdio",
|
|
11
|
+
"command": "npx",
|
|
12
|
+
"args": ["-y", "tavily-mcp@0.2.18"],
|
|
13
|
+
"env": {
|
|
14
|
+
"TAVILY_API_KEY": "${TAVILY_API_KEY}"
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
],
|
|
18
|
+
|
|
19
|
+
"auth": {
|
|
20
|
+
"required": true,
|
|
21
|
+
"type": "api-key",
|
|
22
|
+
"envVars": ["TAVILY_API_KEY"],
|
|
23
|
+
"credentialsUrl": "https://app.tavily.com/home",
|
|
24
|
+
"instructions": "Sign up at Tavily and copy your API key from the dashboard."
|
|
25
|
+
},
|
|
26
|
+
|
|
27
|
+
"install": {
|
|
28
|
+
"method": "npx",
|
|
29
|
+
"package": "tavily-mcp",
|
|
30
|
+
"version": "0.2.18"
|
|
31
|
+
},
|
|
32
|
+
|
|
33
|
+
"metadata": {
|
|
34
|
+
"homepage": "https://tavily.com/",
|
|
35
|
+
"author": "Tavily",
|
|
36
|
+
"tags": ["search", "web", "ai-search", "research", "rag"],
|
|
37
|
+
"category": "search",
|
|
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,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 2,
|
|
3
|
+
"id": "todoist",
|
|
4
|
+
"name": "Todoist",
|
|
5
|
+
"description": "Task management with natural language — create, update, complete, and search tasks and projects in Todoist",
|
|
6
|
+
"repository": "https://github.com/doist/todoist-mcp",
|
|
7
|
+
|
|
8
|
+
"transports": [
|
|
9
|
+
{
|
|
10
|
+
"type": "stdio",
|
|
11
|
+
"command": "npx",
|
|
12
|
+
"args": ["-y", "@doist/todoist-ai"],
|
|
13
|
+
"env": {
|
|
14
|
+
"TODOIST_API_KEY": "${TODOIST_API_TOKEN}"
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
],
|
|
18
|
+
|
|
19
|
+
"auth": {
|
|
20
|
+
"required": true,
|
|
21
|
+
"type": "api-key",
|
|
22
|
+
"envVars": ["TODOIST_API_TOKEN"],
|
|
23
|
+
"credentialsUrl": "https://app.todoist.com/app/settings/integrations/developer",
|
|
24
|
+
"instructions": "Create an app integration at Todoist Developer settings and copy the API token."
|
|
25
|
+
},
|
|
26
|
+
|
|
27
|
+
"install": {
|
|
28
|
+
"method": "npx",
|
|
29
|
+
"package": "@doist/todoist-ai",
|
|
30
|
+
"version": "latest"
|
|
31
|
+
},
|
|
32
|
+
|
|
33
|
+
"metadata": {
|
|
34
|
+
"homepage": "https://todoist.com/",
|
|
35
|
+
"author": "Doist",
|
|
36
|
+
"tags": ["tasks", "todo", "productivity", "project-management", "gtd"],
|
|
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
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 2,
|
|
3
|
+
"id": "wise",
|
|
4
|
+
"name": "Wise",
|
|
5
|
+
"description": "International money transfers and multi-currency account management via the Wise (TransferWise) API",
|
|
6
|
+
"repository": "https://github.com/kstam/wise-mcp",
|
|
7
|
+
|
|
8
|
+
"transports": [
|
|
9
|
+
{
|
|
10
|
+
"type": "stdio",
|
|
11
|
+
"command": "node",
|
|
12
|
+
"args": ["dist/cli.js"],
|
|
13
|
+
"env": {
|
|
14
|
+
"WISE_API_TOKEN": "${WISE_API_TOKEN}"
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
],
|
|
18
|
+
|
|
19
|
+
"auth": {
|
|
20
|
+
"required": true,
|
|
21
|
+
"type": "api-key",
|
|
22
|
+
"envVars": ["WISE_API_TOKEN"],
|
|
23
|
+
"credentialsUrl": "https://wise.com/settings/api-tokens",
|
|
24
|
+
"instructions": "Generate an API token in your Wise account under Settings > API tokens. Use Read-only or Full access depending on your needs."
|
|
25
|
+
},
|
|
26
|
+
|
|
27
|
+
"install": {
|
|
28
|
+
"method": "git",
|
|
29
|
+
"repository": "https://github.com/kstam/wise-mcp",
|
|
30
|
+
"buildCommand": "npm install && npm run build",
|
|
31
|
+
"version": "latest"
|
|
32
|
+
},
|
|
33
|
+
|
|
34
|
+
"metadata": {
|
|
35
|
+
"homepage": "https://wise.com/",
|
|
36
|
+
"author": "kstam",
|
|
37
|
+
"tags": ["payments", "transfers", "international", "currency", "fintech"],
|
|
38
|
+
"category": "finance",
|
|
39
|
+
"pricing": "byok",
|
|
40
|
+
"maturity": "stable"
|
|
41
|
+
},
|
|
42
|
+
|
|
43
|
+
"capabilities": {
|
|
44
|
+
"tools": true,
|
|
45
|
+
"resources": false,
|
|
46
|
+
"prompts": false,
|
|
47
|
+
"sampling": false
|
|
48
|
+
}
|
|
49
|
+
}
|