michael-watson/mcp-builder-community-server
3.2
If you are the rightful owner of mcp-builder-community-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.
The MCP server for the MCP Server Builder Community is designed to facilitate the development and deployment of model context protocol servers, leveraging the latest in LLM and MCP technology.
mcp-builder-community-server
The MCP server for the MCP Server Builder Community
Setup repo
- Create a
.envfile locally with your Apollo key from GraphOS.
APOLLO_KEY=service:cfp-x3c983m:.....
APOLLO_GRAPH_REF=cfp-x3c983m@current
Running locally
- Download Apollo MCP Server
- Start up MCP Server
APOLLO_KEY=... APOLLO_GRAPH_REF=... ./apollo-mcp-server mcp-config.yaml
Running with Docker
# Default for no auth in local dev
docker build --tag mcp-server-builder-series-mcp -f mcp.Dockerfile .
docker build --tag mcp-server-builder-series-router -f mcp.Dockerfile .
# or
docker build --tag mcp-server-builder-series-mcp -f mcp.Dockerfile --build-arg BUILD_ENV=local .
docker build --tag mcp-server-builder-series-router -f mcp.Dockerfile --build-arg BUILD_ENV=local .
docker run -it --env-file .env -p5000:5000 mcp-server-builder-series-mcp
docker run -it --env-file .env -p4000:4000 mcp-server-builder-series-router