mcp-server

by princefishthrower

2 stars
309 downloads
Not rated
GitHub

About

A custom MCP (Model Context Protocol) server that provides tools for managing repositories, issuing terminal commands, running tests, and generating solve prompts tailored for a full stack med tech software engineer.

Details

Author
princefishthrower
GitHub stars
2
Downloads
309
Categories
Other

- generate_solve_prompt – returns a workflow string for med tech engineers
- issue_terminal_command – issues commands and parses stdout/stderr
- list_repo_locations – searches repo locations by keyword with Levenshtein distance
- run_test_for_repo – runs dotnet test on a given repository (Windows)
- get_full_codebase – under development (issues with underlying grimorie command)

Install dependencies with npm install, then build with npm run build. Configure the server in your Claude desktop configuration by specifying the node command, the path to build/index.js, and the required --environment argument (e.g., fullstackcraft).

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

2. Build the project:

npm run build

3. 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!

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.