Skip to main content
Glama
Company-Gibraltar

company-gibraltar-mcp

Official
README.md
# 🇬🇮 company-gibraltar MCP Server

[![npm](https://img.shields.io/npm/v/company-gibraltar-mcp)](https://www.npmjs.com/package/company-gibraltar-mcp)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/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.

7 tools, no API key, no rate limiting.

## Tools

| Tool | Description | Returns |
|------|-------------|---------|
| `poa_calculator` | Calculate Payments on Account (corporate tax instalments) | JSON |
| `deadlines` | Calculate all compliance deadlines for a given year | JSON |
| `annual_return` | Generate pre-filled FAR01 annual return form | ZIP |
| `registered_office_change` | Generate office change forms (FREG01 + board resolution) | ZIP |
| `company_formation` | Generate full incorporation pack (5 FINC forms) | ZIP |
| `egov_account` | Generate eGov account application forms | PDF |
| `residency_planner` | Plan Gibraltar residency routes: pass known facts, get ranked routes with plans, itemised fees vs refundable deposits, department contacts, and the questions still worth asking | JSON |

## Install

```bash
npm install -g company-gibraltar-mcp
```

Or run directly with npx (no install needed):

```bash
npx company-gibraltar-mcp
```

## Setup

### Claude Desktop

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

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

### Claude Code

```bash
claude mcp add company-gibraltar -- npx -y company-gibraltar-mcp
```

### Cursor / Windsurf

Same configuration format in your MCP settings file:

```json
{
  "mcpServers": {
    "company-gibraltar": {
      "command": "npx",
      "args": ["-y", "company-gibraltar-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](https://company.gi/developers). 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"

## Links

- [API Documentation](https://company.gi/developers)
- [API Playground](https://company.gi/developers/playground)
- [OpenAPI Spec](https://company.gi/openapi.json)
- [company.gi](https://company.gi)

## License

MIT

TDQS

A3.7/5.0

Scored across 6 tools

Disambiguation5/5

Each tool targets a distinct compliance task (e.g., formation, annual return, office change, deadlines, eGov account, tax payments). No two tools have overlapping purposes, making selection unambiguous for an agent.

Naming Consistency5/5

All tool names use a consistent descriptive snake_case pattern (e.g., company_formation, poa_calculator, registered_office_change). No mixing of conventions or cryptic abbreviations.

Tool Count5/5

Six tools cover the core lifecycle of Gibraltar company compliance without being excessive. Each tool serves a distinct purpose, and the count is well-scoped for the domain.

Completeness4/5

The tool set covers formation, annual returns, office changes, eGov accounts, POA, and deadlines. Minor gaps like dissolution or name changes are absent, but core workflows are supported.

Maintenance

ActivitySlowing
ResponsivenessNo issues