fix(goose): remove MCP_HOST and such, this is not how mcp works

This commit is contained in:
2025-03-11 12:15:40 -06:00
parent c56b4b35f5
commit 00cee60fe6
4 changed files with 3 additions and 19 deletions

View File

@@ -1,11 +1,11 @@
# Goose Driver for MC
This driver provides a containerized environment for running [Goose](https://goose.ai) with MCP servers.
This driver provides a containerized environment for running [Goose](https://goose.ai).
## Features
- Pre-configured environment for Goose AI
- MCP server integration
- Self-hosted instance integration
- SSH access
- Git repository integration
- Langfuse logging support
@@ -14,7 +14,6 @@ This driver provides a containerized environment for running [Goose](https://goo
| Variable | Description | Required |
|----------|-------------|----------|
| `MCP_HOST` | MCP server host | Yes |
| `LANGFUSE_INIT_PROJECT_PUBLIC_KEY` | Langfuse public key | No |
| `LANGFUSE_INIT_PROJECT_SECRET_KEY` | Langfuse secret key | No |
| `LANGFUSE_URL` | Langfuse API URL | No |
@@ -37,9 +36,6 @@ docker build -t monadical/mc-goose:latest .
# Create a new session with this driver
mc session create --driver goose
# Create with specific MCP server
mc session create --driver goose -e MCP_HOST=http://mcp.example.com:8000
# Create with project repository
mc session create --driver goose --project github.com/username/repo
```