MCP Hub
Back to servers

Local Repository Bridge

MCP (Model Context Protocol) Server. Provides a bridge between Claude and local repositories, enabling direct code analysis, bug fixes, and feature development through specialized tools for generating prompts, executing terminal commands, and locating repositories by keyword.

Stars
2
Tools
5
Validated
Jan 11, 2026

mcp-server

A custom MCP server.

Tools

generate_solve_prompt - returns a string describing a workflow for a full stack med tech software engineer

issue_terminal_command - issues a command and parses stdout and stderr

list_repo_locations - returns a list of repo locations based on a keyword search. uses Levenshtein distance to suggest closest matches when an exact match is not found

run_test_for_repo - designed to be run on a windows machine, runs a dotnet test command on a given repo


get_full_codebase - currently under development, there an issue with the grimiore command it uses under the hood...

Usage

  1. Install the dependencies:
npm install
  1. Build the project:
npm run build
  1. Consume the server your Claude desktop configuration. This server requires an environment argument to be passed in, to determine what repos should be looked for within the list_repo_locations argument:
// ...other MCP servers...
"mcp-local": {
    "command": "node",
    "args": [
        "/path/to/cloned/mcp-server/build/index.js",
        "--environment",
        "fullstackcraft"
    ]
}
// ...other MCP servers...

Of course, the paths listed in the repo maps in list_repo_locations must be valid paths on your local machine!

Reviews

No reviews yet

Sign in to write a review