🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

company-gi-mcp

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

company-gi-mcp

Gibraltar company tools for AI agents. Calculate corporate tax payments, check compliance deadlines, and generate pre-filled PDF form packs for Gibraltar Companies House.

latest
Source
npmnpm
Version
1.0.1
Version published
Weekly downloads
41
Maintainers
1
Weekly downloads
 
Created
Source

🇬🇮 company-gi MCP Server

npm License: MIT

Gibraltar company tools for AI agents. Calculate corporate tax payments, check compliance deadlines, and generate pre-filled PDF form packs for Gibraltar Companies House.

6 tools, no API key, no rate limiting.

Tools

ToolDescriptionReturns
poa_calculatorCalculate Payments on Account (corporate tax instalments)JSON
deadlinesCalculate all compliance deadlines for a given yearJSON
annual_returnGenerate pre-filled FAR01 annual return formZIP
registered_office_changeGenerate office change forms (FREG01 + board resolution)ZIP
company_formationGenerate full incorporation pack (5 FINC forms)ZIP
egov_accountGenerate eGov account application formsPDF

Install

npm install -g company-gi-mcp

Or run directly with npx (no install needed):

npx company-gi-mcp

Setup

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "company-gi": {
      "command": "npx",
      "args": ["-y", "company-gi-mcp"],
      "env": {
        "COMPANY_GI_API_URL": "https://company.gi"
      }
    }
  }
}

Claude Code

claude mcp add company-gi -- npx -y company-gi-mcp

Cursor / Windsurf

Same configuration format in your MCP settings file:

{
  "mcpServers": {
    "company-gi": {
      "command": "npx",
      "args": ["-y", "company-gi-mcp"],
      "env": {
        "COMPANY_GI_API_URL": "https://company.gi"
      }
    }
  }
}

How it works

This MCP server is a thin wrapper around the company.gi REST API. Each tool validates input with Zod and forwards the request to the corresponding API endpoint. The actual business logic (tax calculations, PDF generation, deadline calculations) runs on the server.

  • JSON tools (POA calculator, deadlines) return structured data
  • Binary tools (annual return, office change, formation, eGov) return base64-encoded PDFs/ZIPs

Example usage

Ask your AI assistant:

  • "Calculate my payments on account for 2026 if last year's tax was 5000"
  • "What are my compliance deadlines? My company was incorporated on 2023-06-15"
  • "Generate an annual return form for company number 12345"
  • "Create a company formation pack for a new company called Acme Limited"

License

MIT

Keywords

mcp

FAQs

Package last updated on 24 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts