Compare commits

..

8 commits

Author SHA1 Message Date
Tobias J. Endres
b83df6ddf4 chore: remove contextforge (remote SSE, no Docker image)
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2026-06-23 16:00:50 +02:00
Tobias J. Endres
c54aa889f1 fix: add ca-certificates to bitwarden Dockerfile (curl needs HTTPS certs) 2026-06-23 15:52:44 +02:00
Tobias J. Endres
e114e2e5be fix: add ca-certificates to kontist Dockerfile (git clone needs HTTPS certs) 2026-06-23 15:49:59 +02:00
Tobias J. Endres
e5fde01f8b fix: use NodeSource v22 instead of Debian npm (pulls 375 packages)
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
075751c815 docs: add root README with port map and usage 2026-06-23 15:38:12 +02:00
Tobias J. Endres
8844438477 fix: use python:3.12-slim base for Python MCPs (nc-mcp-server needs 3.12+) 2026-06-23 15:37:45 +02:00
Tobias J. Endres
8aa1effa89 fix: add build-essential to Python Dockerfiles for source builds 2026-06-23 15:33:12 +02:00
Tobias J. Endres
2078644d69 feat: update fleet to tested MCPs + add 10 new MCPs with Dockerfiles + Woodpecker CI 2026-06-23 15:09:54 +02:00
2 changed files with 0 additions and 38 deletions

View file

@ -42,4 +42,3 @@ 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

View file

@ -1,37 +0,0 @@
# 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.