loading…
Search for a command to run...
loading…
Enforces GINIALTECH project conventions and protects critical files while providing project context to AI agents. It ensures adherence to specific language requ
Enforces GINIALTECH project conventions and protects critical files while providing project context to AI agents. It ensures adherence to specific language requirements and the use of Bun as the exclusive package manager.
MCP (Model Context Protocol) server for GINIALTECH projects. Enforces conventions, protects critical files and provides project context to AI agents.
get_project_contextReads AI_CONTEXT.md from the current project and returns its contents. Searches in the project root first, then in docs/.
get_protected_filesReturns the list of files that should never be modified without explicit confirmation from the developer.
validate_conventionsReturns the mandatory conventions for all GINIALTECH projects:
bun exclusivelygit clone https://github.com/marcelaborgarello/ginialtech-mcp
cd ginialtech-mcp
bun install
Add this to your mcp_config.json inside the mcpServers object:
"ginialtech-mcp": {
"$typeName": "exa.cascade_plugins_pb.CascadePluginCommandTemplate",
"command": "/absolute/path/to/bun",
"args": [
"run",
"/absolute/path/to/ginialtech-mcp/src/index.ts"
],
"env": {}
}
On Windows, use double backslashes:
C:\\Users\\youruser\\...
To find your bun path:
which bun # macOS/Linux
where bun # Windows
Add to your MCP config:
"ginialtech-mcp": {
"command": "bun",
"args": ["run", "/absolute/path/to/ginialtech-mcp/src/index.ts"]
}
ginialtech-mcp/
src/
index.ts ← MCP server and tools
package.json
tsconfig.json
README.md
MIT — GINIALTECH
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"ginialtech-mcp": {
"command": "npx",
"args": []
}
}
}