Fix weather + wikipedia: add mcp_config (command+args) to manifest

Both connectors were missing the mcp_config block that the frontend requires
to install mcp_local connectors. Bump v1→v2 (2.0.0).
This commit is contained in:
2026-07-19 17:25:40 +01:00
parent 513483e81b
commit f1654d7d9d
4 changed files with 25 additions and 12 deletions
+1
View File
@@ -468,6 +468,7 @@ sudo find /var/www/connectors.skaldagent.net/ -type f -exec chmod 644 {} \;
|----|------|------|-------|------|--------| |----|------|------|-------|------|--------|
| `exa` | Exa | `mcp_remote` | `global` | api_key (`{SECRET:exaApiKey}` in URL — optional, free tier) | `verify.py` (MCP initialize probe) | | `exa` | Exa | `mcp_remote` | `global` | api_key (`{SECRET:exaApiKey}` in URL — optional, free tier) | `verify.py` (MCP initialize probe) |
| `tavily` | Tavily | `mcp_remote` | `global` | api_key (`{SECRET:tavilyApiKey}` in URL) | `verify.py` (HTTP probe `/search`) | | `tavily` | Tavily | `mcp_remote` | `global` | api_key (`{SECRET:tavilyApiKey}` in URL) | `verify.py` (HTTP probe `/search`) |
| `serpapi-flights` | SerpAPI Flights | `mcp_remote` | `global` | api_key (`{SECRET:serpapiApiKey}` in URL) | `verify.py` (MCP initialize probe) |
| `gmail` | Gmail | `mcp_local` | `user` | oauth2 (Google) + deliver: `env/google_authorized_user` (via `GMAIL_CREDS_JSON`) | ⏳ Fase 2 — OAuth via loopback listener | | `gmail` | Gmail | `mcp_local` | `user` | oauth2 (Google) + deliver: `env/google_authorized_user` (via `GMAIL_CREDS_JSON`) | ⏳ Fase 2 — OAuth via loopback listener |
| `gcal` | Google Calendar | `mcp_local` | `user` | oauth2 (Google) + deliver: `env/google_authorized_user` (via `GCAL_CREDS_JSON`) | `verify.py` (creds load + API probe) | | `gcal` | Google Calendar | `mcp_local` | `user` | oauth2 (Google) + deliver: `env/google_authorized_user` (via `GCAL_CREDS_JSON`) | `verify.py` (creds load + API probe) |
| `drive` | Google Drive | `mcp_local` | `user` | oauth2 (Google) + deliver: `env/google_authorized_user` (via `DRIVE_CREDS_JSON`) | `verify.py` (creds load + Drive API probe) | | `drive` | Google Drive | `mcp_local` | `user` | oauth2 (Google) + deliver: `env/google_authorized_user` (via `DRIVE_CREDS_JSON`) | `verify.py` (creds load + Drive API probe) |
+8 -8
View File
@@ -534,8 +534,8 @@
"type": "none" "type": "none"
}, },
"folder": "weather", "folder": "weather",
"version": 1, "version": 2,
"version_string": "1.0.0", "version_string": "2.0.0",
"version_release_date": "2026-07-19", "version_release_date": "2026-07-19",
"files": [ "files": [
{ {
@@ -545,8 +545,8 @@
}, },
{ {
"path": "connector.json", "path": "connector.json",
"sha256": "5dd9852857eb2eb6236e34708c1436a835cbf49466fd575052c24dd1f6db973d", "sha256": "a55996daf7414fa7d5ee646919805d2f4c9cf7315175f2d61b77fec9c4386725",
"size": 1278 "size": 1377
}, },
{ {
"path": "requirements.txt", "path": "requirements.txt",
@@ -638,8 +638,8 @@
"type": "none" "type": "none"
}, },
"folder": "wikipedia", "folder": "wikipedia",
"version": 1, "version": 2,
"version_string": "1.0.0", "version_string": "2.0.0",
"version_release_date": "2026-07-19", "version_release_date": "2026-07-19",
"files": [ "files": [
{ {
@@ -649,8 +649,8 @@
}, },
{ {
"path": "connector.json", "path": "connector.json",
"sha256": "dc24727a2a6931e6567ef32a27c99eb6687e1001ea47fe6f0fdb8ff19f02a505", "sha256": "5e352717810fad188745c7fc78768f6ec86b8f2cb476081a5977606b2cd143cf",
"size": 1168 "size": 1269
}, },
{ {
"path": "requirements.txt", "path": "requirements.txt",
+8 -2
View File
@@ -33,7 +33,13 @@
"forecast", "forecast",
"air-quality" "air-quality"
], ],
"version": 1, "mcp_config": {
"version_string": "1.0.0", "command": "python3",
"args": [
"weather_mcp_server.py"
]
},
"version": 2,
"version_string": "2.0.0",
"version_release_date": "2026-07-19" "version_release_date": "2026-07-19"
} }
+8 -2
View File
@@ -33,7 +33,13 @@
"reference", "reference",
"research" "research"
], ],
"version": 1, "mcp_config": {
"version_string": "1.0.0", "command": "python3",
"args": [
"wikipedia_mcp_server.py"
]
},
"version": 2,
"version_string": "2.0.0",
"version_release_date": "2026-07-19" "version_release_date": "2026-07-19"
} }