Compare commits

..

7 commits

Author SHA1 Message Date
Tobias J. Endres
b1c4f4b563 fix: add ca-certificates to bitwarden Dockerfile (curl needs HTTPS certs)
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2026-06-23 15:52:44 +02:00
Tobias J. Endres
0b663ea2c6 fix: add ca-certificates to kontist Dockerfile (git clone needs HTTPS certs)
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2026-06-23 15:49:59 +02:00
Tobias J. Endres
abfc5e9d93 fix: use NodeSource v22 instead of Debian npm (pulls 375 packages)
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Switch from apt-get install nodejs npm to NodeSource setup_22.x
to avoid pulling 245MB of unnecessary build dependencies on
python:3.12-slim (Debian Trixie).
2026-06-23 15:40:03 +02:00
Tobias J. Endres
47b7aa0810 docs: add root README with port map and usage
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2026-06-23 15:38:12 +02:00
Tobias J. Endres
f0a5899cfe fix: use python:3.12-slim base for Python MCPs (nc-mcp-server needs 3.12+)
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2026-06-23 15:37:45 +02:00
Tobias J. Endres
de089d1525 fix: add build-essential to Python Dockerfiles for source builds
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2026-06-23 15:33:12 +02:00
Tobias J. Endres
22b81b2478 feat: update fleet to tested MCPs + add 10 new MCPs with Dockerfiles + Woodpecker CI
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2026-06-23 15:09:54 +02:00
2 changed files with 38 additions and 0 deletions

View file

@ -42,3 +42,4 @@ See each MCP's `README.md` for specific environment variables and tools.
These MCPs run natively or are remote endpoints (no Docker image): These MCPs run natively or are remote endpoints (no Docker image):
- **playwright/** — Browser automation, runs better natively (needs display + browser) - **playwright/** — Browser automation, runs better natively (needs display + browser)
- **contextforge/** — Remote SSE gateway, no server to run locally

37
contextforge/README.md Normal file
View file

@ -0,0 +1,37 @@
# contextforge-mcp
MCP server gateway connecting to ContextForge backend agents. This is a remote SSE endpoint — no Docker image needed.
Source: Self-hosted at `mcp-gateway.corentic.eu`
## Configuration
This MCP is a remote endpoint, not a local server. Configure in your AI client:
```json
{
"mcpServers": {
"contextforge": {
"type": "remote",
"url": "https://mcp-gateway.corentic.eu/sse",
"headers": {
"Authorization": "Bearer your_token",
"X-Forgejo-Token": "your_forgejo_token"
}
}
}
}
```
## Environment Variables (for local config)
Configure these in your environment:
| Variable | Description |
|----------|-------------|
| `CONTEXTFORGE_BEARER_TOKEN` | JWT token for API auth |
| `CONTEXTFORGE_FORGEJO_TOKEN` | Forgejo API token for repo operations |
## Tools
Dynamically registered by backend agents. Run `get_prompts` and `get_resources` after connecting to discover available capabilities.