Skip to main content
Glama

ginialtech-mcp

MCP (Model Context Protocol) server for GINIALTECH projects. Enforces conventions, protects critical files and provides project context to AI agents.

Tools

get_project_context

Reads AI_CONTEXT.md from the current project and returns its contents. Searches in the project root first, then in docs/.

get_protected_files

Returns the list of files that should never be modified without explicit confirmation from the developer.

validate_conventions

Returns the mandatory conventions for all GINIALTECH projects:

  • Package manager: bun exclusively

  • Code and comments: English

  • Plans, tasks and communication: Spanish (Argentina)

  • Always plan before executing

  • Never modify protected files without confirmation

Related MCP server: vaporcheck

Requirements

Installation

git clone https://github.com/marcelaborgarello/ginialtech-mcp
cd ginialtech-mcp
bun install

Usage with Antigravity (Google AI Studio)

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

Usage with Claude Code / Cursor

Add to your MCP config:

"ginialtech-mcp": {
  "command": "bun",
  "args": ["run", "/absolute/path/to/ginialtech-mcp/src/index.ts"]
}

Project structure

ginialtech-mcp/
  src/
    index.ts    ← MCP server and tools
  package.json
  tsconfig.json
  README.md

License

MIT — GINIALTECH

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Provides AI agents with queryable, version-controlled project rules and coding standards. Enables validation, rule-based guidance, and task summaries to keep AI work aligned with your project's conventions without repeating context.
    2
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Blocks AI coding assistants from installing non-existent packages and accessing non-existent files.
    1
    Apache 2.0
  • A
    license
    Not graded
    quality
    B
    maintenance
    Provides a quality framework and enforceable conventions for AI coding assistants, ensuring code quality, environment hygiene, and project standards across multiple AI tools.
    69 npm
    3
    -