Compare commits
7 commits
b83df6ddf4
...
b1c4f4b563
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b1c4f4b563 | ||
|
|
0b663ea2c6 | ||
|
|
abfc5e9d93 | ||
|
|
47b7aa0810 | ||
|
|
f0a5899cfe | ||
|
|
de089d1525 | ||
|
|
22b81b2478 |
2 changed files with 38 additions and 0 deletions
|
|
@ -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):
|
||||
|
||||
- **playwright/** — Browser automation, runs better natively (needs display + browser)
|
||||
- **contextforge/** — Remote SSE gateway, no server to run locally
|
||||
|
|
|
|||
37
contextforge/README.md
Normal file
37
contextforge/README.md
Normal 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.
|
||||
Loading…
Add table
Reference in a new issue