37 lines
964 B
Markdown
37 lines
964 B
Markdown
|
|
# 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.
|