Company MCP Server

Gibraltar company tools: corporate tax, compliance deadlines, and PDF form generation.

Local serverstdio

What is the Company MCP server?

Gibraltar company tools: corporate tax, compliance deadlines, and PDF form generation. That is what the company mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

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

The tools it exposes

The server publishes 6 tools. What each one is for:

  • poa_calculator — Calculate Payments on Account (corporate tax instalments)
  • deadlines — Calculate all compliance deadlines for a given year
  • annual_return — Generate pre-filled FAR01 annual return form
  • registered_office_change — Generate office change forms (FREG01 + board resolution)
  • company_formation — Generate full incorporation pack (5 FINC forms)
  • egov_account — Generate eGov account application forms

Getting it running

Installation goes through your MCP client rather than a global install: point it at company-gibraltar-mcp on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

What it needs from you

Configuration is passed through the environment: COMPANY_GI_API_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

How it compares

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Company's toolset — poa_calculator, deadlines, annual_return and 3 more — is a fair guide to whether it matches your workflow. It is maintained by Company-Gibraltar; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
poa_calculatorCalculate Payments on Account (corporate tax instalments)
deadlinesCalculate all compliance deadlines for a given year
annual_returnGenerate pre-filled FAR01 annual return form
registered_office_changeGenerate office change forms (FREG01 + board resolution)
company_formationGenerate full incorporation pack (5 FINC forms)
egov_accountGenerate eGov account application forms

How to install the Company MCP server

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

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
COMPANY_GI_API_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Company to poa calculator.
  • Use Company to deadlines.
  • Use Company to annual return.

Frequently asked questions

It connects Company to MCP-compatible AI assistants such as Claude and Cursor, exposing 6 tools (poa_calculator, deadlines, annual_return, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Company directly.