Gibraltar company tools: corporate tax, compliance deadlines, and PDF form generation.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"company-gibraltar": {
"env": {
"COMPANY_GI_API_URL": "https://company.gi"
},
"args": [
"-y",
"company-gibraltar-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Gibraltar company tools: corporate tax, compliance deadlines, and PDF form generation.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'company-gibraltar-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked company-gibraltar-mcp against OSV.dev.
Click any tool to inspect its schema.
This server is missing a description.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in legal / finance
87 tools for Korean law — statutes, precedents, ordinances, interpretations | MCP Server · CLI · npm
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol server for building an investor agent
Proof primitive for AI agents on MultiversX. Anchor file hashes on-chain as verifiable proofs.
MCP Security Weekly
Get CVE alerts and security updates for io.github.Company-Gibraltar/company-gibraltar and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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.
| 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 |
npm install -g company-gibraltar-mcp
Or run directly with npx (no install needed):
npx company-gibraltar-mcp
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"company-gibraltar": {
"command": "npx",
"args": ["-y", "company-gibraltar-mcp"],
"env": {
"COMPANY_GI_API_URL": "https://company.gi"
}
}
}
}
claude mcp add company-gibraltar -- npx -y company-gibraltar-mcp
Same configuration format in your MCP settings file:
{
"mcpServers": {
"company-gibraltar": {
"command": "npx",
"args": ["-y", "company-gibraltar-mcp"],
"env": {
"COMPANY_GI_API_URL": "https://company.gi"
}
}
}
}
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.
Ask your AI assistant:
MIT