Sachin RS/git-spice-help-mcp
Built by Metorial, the integration platform for agentic AI.
Sachin RS/git-spice-help-mcp
Server Summary
Search documentation
Integrate with Cursor IDE
Parse documentation efficiently
This repository contains a Model Context Protocol (MCP) server implementation that provides a tool for searching git-spice documentation within Cursor IDE.
git clone
cd
npm install
# or
yarn install
npm run build
# or
yarn build
The server is pre-configured with the following capabilities:
Open Cursor IDE settings:
Cmd + ,
Ctrl + ,
Navigate to the "Extensions" section
Find the MCP Server settings and add a new server configuration:
{
"name": "Git Spice MCP Server",
"command": "node",
"args": ["dist/index.js"],
"cwd": "/path/to/your/project"
}
When using Cursor in agent mode, the MCP server will be automatically detected and the git-spice documentation search tool will be available. The agent will prompt you to use the tool when relevant to your queries.
src/index.ts
: Main server implementationsrc/
: Source code directorydist/
: Compiled output directory