Skip to content

Add MCP configuration for docker community edition with 'docker-ce' profile #424

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 1, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 71 additions & 0 deletions embabel-agent-api/src/main/resources/application-docker-ce.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
spring:

ai:
mcp:
client:
enabled: true
name: embabel
version: 1.0.0
request-timeout: 30s
type: SYNC

stdio:
connections:
brave-search-mcp:
command: docker
args:
- run
- -i
- --rm
- -e
- BRAVE_API_KEY
- mcp/brave-search
env:
BRAVE_API_KEY: ${BRAVE_API_KEY}
fetch-mcp:
command: docker
args:
- run
- -i
- --rm
- mcp/fetch
puppeteer-mcp:
command: docker
args:
- run
- -i
- --rm
- -e
- DOCKER_CONTAINER
- mcp/puppeteer
env:
DOCKER_CONTAINER: true
wikipedia-mcp:
command: docker
args:
- run
- -i
- --rm
- mcp/wikipedia-mcp
github-mcp:
command: docker
args:
- run
- -i
- --rm
- -e
- GITHUB_PERSONAL_ACCESS_TOKEN
- mcp/github
env:
GITHUB_PERSONAL_ACCESS_TOKEN: ${GITHUB_PERSONAL_ACCESS_TOKEN}
google-maps-mcp:
command: docker
args:
- run
- -i
- --rm
- -e
- GOOGLE_MAPS_API_KEY
- mcp/google-maps
env:
GOOGLE_MAPS_API_KEY: ${GOOGLE_MAPS_API_KEY}