We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Ahmad-A0/silverbullet-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
docker-compose.yml•731 B
services:
silverbullet:
image: ghcr.io/silverbulletmd/silverbullet:v2
ports:
- "3000:3000"
environment:
- SB_AUTH_TOKEN=${SB_AUTH_TOKEN}
- SB_FOLDER=/space
volumes:
- ./space:/space
silverbullet-mcp-server:
build: .
ports:
- "4000:4000"
environment:
- SB_AUTH_TOKEN=${SB_AUTH_TOKEN} # For mcp-server to auth with SilverBullet API
- MCP_TOKEN=${MCP_TOKEN} # For clients to auth with mcp-server
- DEBUG_REQUESTS=${DEBUG_REQUESTS}
- SB_API_BASE_URL=http://silverbullet:3000 # For mcp-server to find SilverBullet
- PORT=4000
# No direct volume mount needed for /space if using API exclusively
depends_on:
- silverbullet