-
Notifications
You must be signed in to change notification settings - Fork 171
add Scaffold MCP server to mcp-registry #108
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
base: main
Are you sure you want to change the base?
Conversation
When I run
|
I tested |
If the |
When I do the
I guess this is because you're trying to establish a connection to a backend to list tools. I don't think that the default that you have for
I get the previous error. However, because you require external data sources at the start, the Docker image will not be pushed to the Hub, because we only push images that we can list tools. |
Well, I can add existing image with docker run -d \
--rm \
--name scaffold-mcp \
--network scaffold-network \ # Probably Network is optional
-p 8000:8080 \
-v "$(pwd)/":/app/codebase \ # Or another way to declare absolute project path
-e CHROMA_SERVER_HOST="scaffold-chromadb" \
-e CHROMA_SERVER_PORT="8000" \
-e CHROMA_COLLECTION_NAME="scaffold_data" \
-e NEO4J_USER="neo4j" \
-e NEO4J_PASSWORD="password" \
-e NEO4J_URI="bolt://neo4j:password@scaffold-neo4j:7687" \
-t \
ghcr.io/beer-bears/scaffold:latest |
Scaffold is a specialized RAG system that transforms entire codebase into a knowledge graph based on code AST, capturing the structural relationships between files, classes, and functions. That helps to provide a relevant context for LLM when working with large codebases.
Scaffold repository