agent-devkit 0.8.3 → 0.8.9
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 +91 -2
- package/dist/main.js +30542 -18018
- package/dist/main.js.map +1 -1
- package/package.json +3 -1
- package/src/assets/agents/profiles.json +5 -5
- package/src/assets/automations/document-template/automation.json +64 -0
- package/src/assets/automations/document-template/payloads/v1/document.md +14 -0
- package/src/assets/automations/document-template/payloads/v1/notes.md +3 -0
- package/src/assets/automations/document-template/readme.md +5 -0
- package/src/assets/automations/document-template/skill.md +39 -0
- package/src/assets/automations/http-health-check/automation.json +61 -0
- package/src/assets/automations/http-health-check/payloads/request.json +4 -0
- package/src/assets/automations/http-health-check/readme.md +5 -0
- package/src/assets/automations/http-health-check/skill.md +39 -0
- package/src/assets/i18n/en-US.json +35 -1
- package/src/assets/i18n/fr-FR.json +35 -1
- package/src/assets/i18n/ja-JP.json +35 -1
- package/src/assets/i18n/pt-BR.json +35 -1
- package/src/assets/i18n/zh-CN.json +35 -1
- package/src/assets/mcp/anthropic.json +27 -0
- package/src/assets/mcp/aws.json +40 -0
- package/src/assets/mcp/azure.json +27 -0
- package/src/assets/mcp/bigquery.json +27 -0
- package/src/assets/mcp/bitbucket.json +27 -0
- package/src/assets/mcp/cloudflare.json +27 -0
- package/src/assets/mcp/confluence.json +27 -0
- package/src/assets/mcp/context7.json +14 -0
- package/src/assets/mcp/discord.json +27 -0
- package/src/assets/mcp/docker.json +27 -0
- package/src/assets/mcp/elasticsearch.json +27 -0
- package/src/assets/mcp/filesystem.json +20 -0
- package/src/assets/mcp/firebase.json +27 -0
- package/src/assets/mcp/gcp.json +27 -0
- package/src/assets/mcp/git.json +20 -0
- package/src/assets/mcp/github.json +21 -0
- package/src/assets/mcp/gitlab.json +21 -0
- package/src/assets/mcp/google-drive.json +21 -0
- package/src/assets/mcp/hubspot.json +27 -0
- package/src/assets/mcp/jira.json +27 -0
- package/src/assets/mcp/kubernetes.json +21 -0
- package/src/assets/mcp/linear.json +27 -0
- package/src/assets/mcp/memory.json +14 -0
- package/src/assets/mcp/microsoft-365.json +27 -0
- package/src/assets/mcp/mongodb.json +27 -0
- package/src/assets/mcp/mysql.json +27 -0
- package/src/assets/mcp/neon.json +27 -0
- package/src/assets/mcp/netlify.json +27 -0
- package/src/assets/mcp/notion.json +27 -0
- package/src/assets/mcp/ollama.json +20 -0
- package/src/assets/mcp/openai.json +27 -0
- package/src/assets/mcp/openrouter.json +27 -0
- package/src/assets/mcp/outlook.json +27 -0
- package/src/assets/mcp/playwright.json +14 -0
- package/src/assets/mcp/postgres.json +14 -0
- package/src/assets/mcp/railway.json +27 -0
- package/src/assets/mcp/redis.json +27 -0
- package/src/assets/mcp/render.json +27 -0
- package/src/assets/mcp/salesforce.json +27 -0
- package/src/assets/mcp/sentry.json +21 -0
- package/src/assets/mcp/sequential-thinking.json +14 -0
- package/src/assets/mcp/sharepoint.json +27 -0
- package/src/assets/mcp/shopify.json +27 -0
- package/src/assets/mcp/slack.json +27 -0
- package/src/assets/mcp/snowflake.json +27 -0
- package/src/assets/mcp/stripe.json +21 -0
- package/src/assets/mcp/supabase.json +27 -0
- package/src/assets/mcp/teams.json +27 -0
- package/src/assets/mcp/terraform.json +14 -0
- package/src/assets/mcp/vercel.json +27 -0
- package/src/assets/prompts/core/chat.json +1 -1
- package/src/assets/prompts/core/tool-decision.json +10 -0
- package/src/assets/runtime/terminal-session-runner.cjs +13 -7
- package/src/assets/scaffolds/angular-app.json +18 -0
- package/src/assets/scaffolds/dart-cli.json +17 -0
- package/src/assets/scaffolds/django-app.json +19 -0
- package/src/assets/scaffolds/dotnet-console.json +16 -0
- package/src/assets/scaffolds/dotnet-webapi.json +17 -0
- package/src/assets/scaffolds/express-api.json +22 -0
- package/src/assets/scaffolds/flutter-app.json +17 -0
- package/src/assets/scaffolds/go-api.json +20 -0
- package/src/assets/scaffolds/laravel-app.json +15 -0
- package/src/assets/scaffolds/nestjs-api.json +21 -0
- package/src/assets/scaffolds/next-app.json +29 -0
- package/src/assets/scaffolds/node-cli.json +21 -0
- package/src/assets/scaffolds/python-fastapi.json +24 -0
- package/src/assets/scaffolds/rails-app.json +15 -0
- package/src/assets/scaffolds/react-native-expo.json +16 -0
- package/src/assets/scaffolds/react-vite.json +23 -0
- package/src/assets/scaffolds/rust-cli.json +16 -0
- package/src/modules/automations/surface/knowledge.json +11 -0
- package/src/modules/automations/surface/loop.json +18 -0
- package/src/modules/automations/surface/prompt.json +20 -0
- package/src/modules/automations/surface/skill.json +17 -0
- package/src/modules/background/surface/knowledge.json +11 -0
- package/src/modules/background/surface/loop.json +18 -0
- package/src/modules/background/surface/prompt.json +20 -0
- package/src/modules/background/surface/skill.json +16 -0
- package/src/modules/environment/surface/knowledge.json +12 -2
- package/src/modules/environment/surface/prompt.json +36 -1
- package/src/modules/environment/surface/skill.json +8 -1
- package/src/modules/integrations/surface/knowledge.json +4 -0
- package/src/modules/integrations/surface/prompt.json +1 -1
- package/src/modules/integrations/surface/skill.json +4 -0
- package/src/modules/project/surface/knowledge.json +5 -2
- package/src/modules/project/surface/prompt.json +5 -0
- package/src/modules/project/surface/skill.json +6 -3
- package/src/modules/runtime/surface/knowledge.json +1 -0
- package/src/modules/runtime/surface/prompt.json +5 -0
- package/src/assets/prompts/core/intent.json +0 -33
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "bigquery",
|
|
4
|
+
"name": "BigQuery MCP",
|
|
5
|
+
"description": "BigQuery-compatible remote MCP endpoint.",
|
|
6
|
+
"transport": "http",
|
|
7
|
+
"homepage": "https://cloud.google.com/bigquery",
|
|
8
|
+
"http": {
|
|
9
|
+
"url": "{{url}}",
|
|
10
|
+
"headers": [
|
|
11
|
+
{
|
|
12
|
+
"name": "Authorization",
|
|
13
|
+
"description": "Authorization header value stored in the Agent DevKit vault.",
|
|
14
|
+
"secretName": "mcp/bigquery/authorization",
|
|
15
|
+
"required": false
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"environment": [],
|
|
20
|
+
"variables": [
|
|
21
|
+
{
|
|
22
|
+
"name": "url",
|
|
23
|
+
"description": "BigQuery MCP endpoint URL.",
|
|
24
|
+
"required": true
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "bitbucket",
|
|
4
|
+
"name": "Bitbucket MCP",
|
|
5
|
+
"description": "Bitbucket-compatible remote MCP endpoint.",
|
|
6
|
+
"transport": "http",
|
|
7
|
+
"homepage": "https://bitbucket.org",
|
|
8
|
+
"http": {
|
|
9
|
+
"url": "{{url}}",
|
|
10
|
+
"headers": [
|
|
11
|
+
{
|
|
12
|
+
"name": "Authorization",
|
|
13
|
+
"description": "Authorization header value stored in the Agent DevKit vault.",
|
|
14
|
+
"secretName": "mcp/bitbucket/authorization",
|
|
15
|
+
"required": false
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"environment": [],
|
|
20
|
+
"variables": [
|
|
21
|
+
{
|
|
22
|
+
"name": "url",
|
|
23
|
+
"description": "Bitbucket MCP endpoint URL.",
|
|
24
|
+
"required": true
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "cloudflare",
|
|
4
|
+
"name": "Cloudflare MCP",
|
|
5
|
+
"description": "Cloudflare-compatible remote MCP endpoint.",
|
|
6
|
+
"transport": "http",
|
|
7
|
+
"homepage": "https://www.cloudflare.com",
|
|
8
|
+
"http": {
|
|
9
|
+
"url": "{{url}}",
|
|
10
|
+
"headers": [
|
|
11
|
+
{
|
|
12
|
+
"name": "Authorization",
|
|
13
|
+
"description": "Authorization header value stored in the Agent DevKit vault.",
|
|
14
|
+
"secretName": "mcp/cloudflare/authorization",
|
|
15
|
+
"required": false
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"environment": [],
|
|
20
|
+
"variables": [
|
|
21
|
+
{
|
|
22
|
+
"name": "url",
|
|
23
|
+
"description": "Cloudflare MCP endpoint URL.",
|
|
24
|
+
"required": true
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "confluence",
|
|
4
|
+
"name": "Confluence MCP",
|
|
5
|
+
"description": "Confluence-compatible remote MCP endpoint.",
|
|
6
|
+
"transport": "http",
|
|
7
|
+
"homepage": "https://www.atlassian.com/software/confluence",
|
|
8
|
+
"http": {
|
|
9
|
+
"url": "{{url}}",
|
|
10
|
+
"headers": [
|
|
11
|
+
{
|
|
12
|
+
"name": "Authorization",
|
|
13
|
+
"description": "Authorization header value stored in the Agent DevKit vault.",
|
|
14
|
+
"secretName": "mcp/confluence/authorization",
|
|
15
|
+
"required": false
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"environment": [],
|
|
20
|
+
"variables": [
|
|
21
|
+
{
|
|
22
|
+
"name": "url",
|
|
23
|
+
"description": "Confluence MCP endpoint URL.",
|
|
24
|
+
"required": true
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "context7",
|
|
4
|
+
"name": "Context7 MCP",
|
|
5
|
+
"description": "Context7 MCP server for up-to-date library documentation.",
|
|
6
|
+
"transport": "stdio",
|
|
7
|
+
"homepage": "https://context7.com",
|
|
8
|
+
"stdio": {
|
|
9
|
+
"command": "npx",
|
|
10
|
+
"args": ["-y", "@upstash/context7-mcp@latest"]
|
|
11
|
+
},
|
|
12
|
+
"environment": [],
|
|
13
|
+
"variables": []
|
|
14
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "discord",
|
|
4
|
+
"name": "Discord MCP",
|
|
5
|
+
"description": "Discord-compatible remote MCP endpoint.",
|
|
6
|
+
"transport": "http",
|
|
7
|
+
"homepage": "https://discord.com",
|
|
8
|
+
"http": {
|
|
9
|
+
"url": "{{url}}",
|
|
10
|
+
"headers": [
|
|
11
|
+
{
|
|
12
|
+
"name": "Authorization",
|
|
13
|
+
"description": "Authorization header value stored in the Agent DevKit vault.",
|
|
14
|
+
"secretName": "mcp/discord/authorization",
|
|
15
|
+
"required": false
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"environment": [],
|
|
20
|
+
"variables": [
|
|
21
|
+
{
|
|
22
|
+
"name": "url",
|
|
23
|
+
"description": "Discord MCP endpoint URL.",
|
|
24
|
+
"required": true
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "docker",
|
|
4
|
+
"name": "Docker MCP",
|
|
5
|
+
"description": "Docker-compatible remote MCP endpoint or local Docker MCP gateway.",
|
|
6
|
+
"transport": "http",
|
|
7
|
+
"homepage": "https://www.docker.com",
|
|
8
|
+
"http": {
|
|
9
|
+
"url": "{{url}}",
|
|
10
|
+
"headers": [
|
|
11
|
+
{
|
|
12
|
+
"name": "Authorization",
|
|
13
|
+
"description": "Authorization header value stored in the Agent DevKit vault.",
|
|
14
|
+
"secretName": "mcp/docker/authorization",
|
|
15
|
+
"required": false
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"environment": [],
|
|
20
|
+
"variables": [
|
|
21
|
+
{
|
|
22
|
+
"name": "url",
|
|
23
|
+
"description": "Docker MCP endpoint URL.",
|
|
24
|
+
"required": true
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "elasticsearch",
|
|
4
|
+
"name": "Elasticsearch MCP",
|
|
5
|
+
"description": "Elasticsearch-compatible remote MCP endpoint.",
|
|
6
|
+
"transport": "http",
|
|
7
|
+
"homepage": "https://www.elastic.co/elasticsearch",
|
|
8
|
+
"http": {
|
|
9
|
+
"url": "{{url}}",
|
|
10
|
+
"headers": [
|
|
11
|
+
{
|
|
12
|
+
"name": "Authorization",
|
|
13
|
+
"description": "Authorization header value stored in the Agent DevKit vault.",
|
|
14
|
+
"secretName": "mcp/elasticsearch/authorization",
|
|
15
|
+
"required": false
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"environment": [],
|
|
20
|
+
"variables": [
|
|
21
|
+
{
|
|
22
|
+
"name": "url",
|
|
23
|
+
"description": "Elasticsearch MCP endpoint URL.",
|
|
24
|
+
"required": true
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "filesystem",
|
|
4
|
+
"name": "Filesystem MCP",
|
|
5
|
+
"description": "Local filesystem MCP server scoped to a user-provided root.",
|
|
6
|
+
"transport": "stdio",
|
|
7
|
+
"homepage": "https://modelcontextprotocol.io",
|
|
8
|
+
"stdio": {
|
|
9
|
+
"command": "npx",
|
|
10
|
+
"args": ["-y", "@modelcontextprotocol/server-filesystem", "{{root}}"]
|
|
11
|
+
},
|
|
12
|
+
"environment": [],
|
|
13
|
+
"variables": [
|
|
14
|
+
{
|
|
15
|
+
"name": "root",
|
|
16
|
+
"description": "Filesystem root allowed for the MCP server.",
|
|
17
|
+
"required": true
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "firebase",
|
|
4
|
+
"name": "Firebase MCP",
|
|
5
|
+
"description": "Firebase-compatible remote MCP endpoint.",
|
|
6
|
+
"transport": "http",
|
|
7
|
+
"homepage": "https://firebase.google.com",
|
|
8
|
+
"http": {
|
|
9
|
+
"url": "{{url}}",
|
|
10
|
+
"headers": [
|
|
11
|
+
{
|
|
12
|
+
"name": "Authorization",
|
|
13
|
+
"description": "Authorization header value stored in the Agent DevKit vault.",
|
|
14
|
+
"secretName": "mcp/firebase/authorization",
|
|
15
|
+
"required": false
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"environment": [],
|
|
20
|
+
"variables": [
|
|
21
|
+
{
|
|
22
|
+
"name": "url",
|
|
23
|
+
"description": "Firebase MCP endpoint URL.",
|
|
24
|
+
"required": true
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "gcp",
|
|
4
|
+
"name": "Google Cloud MCP",
|
|
5
|
+
"description": "Google Cloud-compatible remote MCP endpoint.",
|
|
6
|
+
"transport": "http",
|
|
7
|
+
"homepage": "https://cloud.google.com",
|
|
8
|
+
"http": {
|
|
9
|
+
"url": "{{url}}",
|
|
10
|
+
"headers": [
|
|
11
|
+
{
|
|
12
|
+
"name": "Authorization",
|
|
13
|
+
"description": "Authorization header value stored in the Agent DevKit vault.",
|
|
14
|
+
"secretName": "mcp/gcp/authorization",
|
|
15
|
+
"required": false
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"environment": [],
|
|
20
|
+
"variables": [
|
|
21
|
+
{
|
|
22
|
+
"name": "url",
|
|
23
|
+
"description": "Google Cloud MCP endpoint URL.",
|
|
24
|
+
"required": true
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "git",
|
|
4
|
+
"name": "Git MCP",
|
|
5
|
+
"description": "Local Git MCP server scoped to a repository.",
|
|
6
|
+
"transport": "stdio",
|
|
7
|
+
"homepage": "https://github.com/modelcontextprotocol/servers",
|
|
8
|
+
"stdio": {
|
|
9
|
+
"command": "uvx",
|
|
10
|
+
"args": ["mcp-server-git", "--repository", "{{repository}}"]
|
|
11
|
+
},
|
|
12
|
+
"environment": [],
|
|
13
|
+
"variables": [
|
|
14
|
+
{
|
|
15
|
+
"name": "repository",
|
|
16
|
+
"description": "Repository path allowed for the Git MCP server.",
|
|
17
|
+
"required": true
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "github",
|
|
4
|
+
"name": "GitHub MCP",
|
|
5
|
+
"description": "GitHub MCP server definition. Requires authentication configured outside this catalog entry.",
|
|
6
|
+
"transport": "stdio",
|
|
7
|
+
"homepage": "https://github.com",
|
|
8
|
+
"stdio": {
|
|
9
|
+
"command": "npx",
|
|
10
|
+
"args": ["-y", "@modelcontextprotocol/server-github"]
|
|
11
|
+
},
|
|
12
|
+
"environment": [
|
|
13
|
+
{
|
|
14
|
+
"name": "GITHUB_PERSONAL_ACCESS_TOKEN",
|
|
15
|
+
"description": "GitHub token stored in the Agent DevKit vault.",
|
|
16
|
+
"secretName": "mcp/github/token",
|
|
17
|
+
"required": true
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"variables": []
|
|
21
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "gitlab",
|
|
4
|
+
"name": "GitLab MCP",
|
|
5
|
+
"description": "GitLab MCP server definition with token stored in the Agent DevKit vault.",
|
|
6
|
+
"transport": "stdio",
|
|
7
|
+
"homepage": "https://gitlab.com",
|
|
8
|
+
"stdio": {
|
|
9
|
+
"command": "npx",
|
|
10
|
+
"args": ["-y", "@modelcontextprotocol/server-gitlab"]
|
|
11
|
+
},
|
|
12
|
+
"environment": [
|
|
13
|
+
{
|
|
14
|
+
"name": "GITLAB_PERSONAL_ACCESS_TOKEN",
|
|
15
|
+
"description": "GitLab personal access token stored in the Agent DevKit vault.",
|
|
16
|
+
"secretName": "mcp/gitlab/token",
|
|
17
|
+
"required": true
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"variables": []
|
|
21
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "google-drive",
|
|
4
|
+
"name": "Google Drive MCP",
|
|
5
|
+
"description": "Google Drive MCP server definition with OAuth material stored in the Agent DevKit vault.",
|
|
6
|
+
"transport": "stdio",
|
|
7
|
+
"homepage": "https://www.google.com/drive",
|
|
8
|
+
"stdio": {
|
|
9
|
+
"command": "npx",
|
|
10
|
+
"args": ["-y", "@modelcontextprotocol/server-google-drive"]
|
|
11
|
+
},
|
|
12
|
+
"environment": [
|
|
13
|
+
{
|
|
14
|
+
"name": "GOOGLE_OAUTH_CREDENTIALS",
|
|
15
|
+
"description": "Google OAuth credentials stored in the Agent DevKit vault.",
|
|
16
|
+
"secretName": "mcp/google-drive/oauth-credentials",
|
|
17
|
+
"required": false
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"variables": []
|
|
21
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "hubspot",
|
|
4
|
+
"name": "HubSpot MCP",
|
|
5
|
+
"description": "HubSpot-compatible remote MCP endpoint.",
|
|
6
|
+
"transport": "http",
|
|
7
|
+
"homepage": "https://www.hubspot.com",
|
|
8
|
+
"http": {
|
|
9
|
+
"url": "{{url}}",
|
|
10
|
+
"headers": [
|
|
11
|
+
{
|
|
12
|
+
"name": "Authorization",
|
|
13
|
+
"description": "Authorization header value stored in the Agent DevKit vault.",
|
|
14
|
+
"secretName": "mcp/hubspot/authorization",
|
|
15
|
+
"required": false
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"environment": [],
|
|
20
|
+
"variables": [
|
|
21
|
+
{
|
|
22
|
+
"name": "url",
|
|
23
|
+
"description": "HubSpot MCP endpoint URL.",
|
|
24
|
+
"required": true
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "jira",
|
|
4
|
+
"name": "Jira MCP",
|
|
5
|
+
"description": "Jira-compatible remote MCP endpoint.",
|
|
6
|
+
"transport": "http",
|
|
7
|
+
"homepage": "https://www.atlassian.com/software/jira",
|
|
8
|
+
"http": {
|
|
9
|
+
"url": "{{url}}",
|
|
10
|
+
"headers": [
|
|
11
|
+
{
|
|
12
|
+
"name": "Authorization",
|
|
13
|
+
"description": "Authorization header value stored in the Agent DevKit vault.",
|
|
14
|
+
"secretName": "mcp/jira/authorization",
|
|
15
|
+
"required": false
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"environment": [],
|
|
20
|
+
"variables": [
|
|
21
|
+
{
|
|
22
|
+
"name": "url",
|
|
23
|
+
"description": "Jira MCP endpoint URL.",
|
|
24
|
+
"required": true
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "kubernetes",
|
|
4
|
+
"name": "Kubernetes MCP",
|
|
5
|
+
"description": "Kubernetes MCP server using the local kubeconfig context.",
|
|
6
|
+
"transport": "stdio",
|
|
7
|
+
"homepage": "https://kubernetes.io",
|
|
8
|
+
"stdio": {
|
|
9
|
+
"command": "npx",
|
|
10
|
+
"args": ["-y", "mcp-server-kubernetes"]
|
|
11
|
+
},
|
|
12
|
+
"environment": [
|
|
13
|
+
{
|
|
14
|
+
"name": "KUBECONFIG",
|
|
15
|
+
"description": "Optional kubeconfig path stored in the Agent DevKit vault.",
|
|
16
|
+
"secretName": "mcp/kubernetes/kubeconfig",
|
|
17
|
+
"required": false
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"variables": []
|
|
21
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "linear",
|
|
4
|
+
"name": "Linear MCP",
|
|
5
|
+
"description": "Linear-compatible remote MCP endpoint.",
|
|
6
|
+
"transport": "http",
|
|
7
|
+
"homepage": "https://linear.app",
|
|
8
|
+
"http": {
|
|
9
|
+
"url": "{{url}}",
|
|
10
|
+
"headers": [
|
|
11
|
+
{
|
|
12
|
+
"name": "Authorization",
|
|
13
|
+
"description": "Authorization header value stored in the Agent DevKit vault.",
|
|
14
|
+
"secretName": "mcp/linear/authorization",
|
|
15
|
+
"required": false
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"environment": [],
|
|
20
|
+
"variables": [
|
|
21
|
+
{
|
|
22
|
+
"name": "url",
|
|
23
|
+
"description": "Linear MCP endpoint URL.",
|
|
24
|
+
"required": true
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "memory",
|
|
4
|
+
"name": "Memory MCP",
|
|
5
|
+
"description": "Reference persistent memory MCP server.",
|
|
6
|
+
"transport": "stdio",
|
|
7
|
+
"homepage": "https://github.com/modelcontextprotocol/servers",
|
|
8
|
+
"stdio": {
|
|
9
|
+
"command": "npx",
|
|
10
|
+
"args": ["-y", "@modelcontextprotocol/server-memory"]
|
|
11
|
+
},
|
|
12
|
+
"environment": [],
|
|
13
|
+
"variables": []
|
|
14
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "microsoft-365",
|
|
4
|
+
"name": "Microsoft 365 MCP",
|
|
5
|
+
"description": "Microsoft 365-compatible remote MCP endpoint.",
|
|
6
|
+
"transport": "http",
|
|
7
|
+
"homepage": "https://www.microsoft.com/microsoft-365",
|
|
8
|
+
"http": {
|
|
9
|
+
"url": "{{url}}",
|
|
10
|
+
"headers": [
|
|
11
|
+
{
|
|
12
|
+
"name": "Authorization",
|
|
13
|
+
"description": "Authorization header value stored in the Agent DevKit vault.",
|
|
14
|
+
"secretName": "mcp/microsoft-365/authorization",
|
|
15
|
+
"required": false
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"environment": [],
|
|
20
|
+
"variables": [
|
|
21
|
+
{
|
|
22
|
+
"name": "url",
|
|
23
|
+
"description": "Microsoft 365 MCP endpoint URL.",
|
|
24
|
+
"required": true
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "mongodb",
|
|
4
|
+
"name": "MongoDB MCP",
|
|
5
|
+
"description": "MongoDB-compatible remote MCP endpoint.",
|
|
6
|
+
"transport": "http",
|
|
7
|
+
"homepage": "https://www.mongodb.com",
|
|
8
|
+
"http": {
|
|
9
|
+
"url": "{{url}}",
|
|
10
|
+
"headers": [
|
|
11
|
+
{
|
|
12
|
+
"name": "Authorization",
|
|
13
|
+
"description": "Authorization header value stored in the Agent DevKit vault.",
|
|
14
|
+
"secretName": "mcp/mongodb/authorization",
|
|
15
|
+
"required": false
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"environment": [],
|
|
20
|
+
"variables": [
|
|
21
|
+
{
|
|
22
|
+
"name": "url",
|
|
23
|
+
"description": "MongoDB MCP endpoint URL.",
|
|
24
|
+
"required": true
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "mysql",
|
|
4
|
+
"name": "MySQL MCP",
|
|
5
|
+
"description": "MySQL-compatible remote MCP endpoint.",
|
|
6
|
+
"transport": "http",
|
|
7
|
+
"homepage": "https://www.mysql.com",
|
|
8
|
+
"http": {
|
|
9
|
+
"url": "{{url}}",
|
|
10
|
+
"headers": [
|
|
11
|
+
{
|
|
12
|
+
"name": "Authorization",
|
|
13
|
+
"description": "Authorization header value stored in the Agent DevKit vault.",
|
|
14
|
+
"secretName": "mcp/mysql/authorization",
|
|
15
|
+
"required": false
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"environment": [],
|
|
20
|
+
"variables": [
|
|
21
|
+
{
|
|
22
|
+
"name": "url",
|
|
23
|
+
"description": "MySQL MCP endpoint URL.",
|
|
24
|
+
"required": true
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "neon",
|
|
4
|
+
"name": "Neon MCP",
|
|
5
|
+
"description": "Neon-compatible remote MCP endpoint.",
|
|
6
|
+
"transport": "http",
|
|
7
|
+
"homepage": "https://neon.tech",
|
|
8
|
+
"http": {
|
|
9
|
+
"url": "{{url}}",
|
|
10
|
+
"headers": [
|
|
11
|
+
{
|
|
12
|
+
"name": "Authorization",
|
|
13
|
+
"description": "Authorization header value stored in the Agent DevKit vault.",
|
|
14
|
+
"secretName": "mcp/neon/authorization",
|
|
15
|
+
"required": false
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"environment": [],
|
|
20
|
+
"variables": [
|
|
21
|
+
{
|
|
22
|
+
"name": "url",
|
|
23
|
+
"description": "Neon MCP endpoint URL.",
|
|
24
|
+
"required": true
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "netlify",
|
|
4
|
+
"name": "Netlify MCP",
|
|
5
|
+
"description": "Netlify-compatible remote MCP endpoint.",
|
|
6
|
+
"transport": "http",
|
|
7
|
+
"homepage": "https://www.netlify.com",
|
|
8
|
+
"http": {
|
|
9
|
+
"url": "{{url}}",
|
|
10
|
+
"headers": [
|
|
11
|
+
{
|
|
12
|
+
"name": "Authorization",
|
|
13
|
+
"description": "Authorization header value stored in the Agent DevKit vault.",
|
|
14
|
+
"secretName": "mcp/netlify/authorization",
|
|
15
|
+
"required": false
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"environment": [],
|
|
20
|
+
"variables": [
|
|
21
|
+
{
|
|
22
|
+
"name": "url",
|
|
23
|
+
"description": "Netlify MCP endpoint URL.",
|
|
24
|
+
"required": true
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "notion",
|
|
4
|
+
"name": "Notion MCP",
|
|
5
|
+
"description": "Notion-compatible remote MCP endpoint.",
|
|
6
|
+
"transport": "http",
|
|
7
|
+
"homepage": "https://www.notion.so",
|
|
8
|
+
"http": {
|
|
9
|
+
"url": "{{url}}",
|
|
10
|
+
"headers": [
|
|
11
|
+
{
|
|
12
|
+
"name": "Authorization",
|
|
13
|
+
"description": "Authorization header value stored in the Agent DevKit vault.",
|
|
14
|
+
"secretName": "mcp/notion/authorization",
|
|
15
|
+
"required": false
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"environment": [],
|
|
20
|
+
"variables": [
|
|
21
|
+
{
|
|
22
|
+
"name": "url",
|
|
23
|
+
"description": "Notion MCP endpoint URL.",
|
|
24
|
+
"required": true
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|