Skip to content

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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
67 changes: 67 additions & 0 deletions servers/scaffold/server.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: scaffold
image: mcp/scaffold
type: server
meta:
category: devops
tags:
- scaffold
- tools
- rag
- repository-level
- context-fetching
- large-codebase
about:
title: Scaffold
description: Specialized RAG system that transforms codebase into living knowledge graph, capturing structural relationships between files, classes and functions.
icon: https://raw.githubusercontent.com/Beer-Bears/scaffold/main/docs/img/scaffold-square.jpg
source:
project: https://github.com/Beer-Bears/scaffold
branch: main
run:
volumes:
- '{{scaffold.project_path}}:/app/codebase'
config:
description: Scaffold MCP Config
env:
- name: CHROMA_SERVER_HOST
example: localhost
value: '{{scaffold.chroma_server_host}}'
- name: CHROMA_SERVER_PORT
example: 8000
value: '{{scaffold.chroma_server_port}}'
- name: CHROMA_COLLECTION_NAME
example: scaffold_data
value: '{{scaffold.chroma_collection_name}}'
- name: NEO4J_USER
example: neo4j
value: '{{scaffold.neo4j_user}}'
- name: NEO4J_PASSWORD
example: password
value: '{{scaffold.neo4j_password}}'
- name: NEO4J_URI
example: bolt://neo4j:password@scaffold-neo4j:7687
value: '{{scaffold.neo4j_uri}}'
parameters:
type: object
properties:
chroma_server_host:
type: string
chroma_server_port:
type: number
neo4j_user:
type: string
neo4j_password:
type: string
neo4j_uri:
type: string
project_path:
type: string
default:
$HOME/absolute_project_path
required:
- chroma_server_host
- chroma_server_port
- neo4j_user
- neo4j_password
- neo4j_uri
- project_path