IrishTaxHub MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@IrishTaxHub MCP ServerCalculate tax refund for single, income 50k, year 2024"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Irish Tax Hub MCP server
FastMCP server exposing a curated, read-only toolset backed by the Irish Tax Hub API.
Hosted endpoints
Production:
https://mcp-prod.aws.irishtaxhub.ie/mcpStage:
https://mcp-stage.aws.irishtaxhub.ie/mcp
The hosted service uses stateless Streamable HTTP. For local MCP clients, run the same server over standard input/output as described below.
Related MCP server: OpenAPI MCP Server
Tools
Tool | Purpose |
| Run one of the supported Irish tax calculators |
| Return the input schema for a calculator |
| List calculator names and descriptions |
| Return tax constants for a supported year |
| Return Irish tax deadlines and key dates |
| Search Revenue Tax and Duty Manuals |
| Retrieve the text of a Revenue document |
| List Revenue document categories |
| Return the latest Revenue eBrief changes |
| Search Ireland's double-taxation treaty corpus |
| Retrieve treaty, protocol, or MLI text |
| List countries in the treaty corpus |
| Return usage statistics for a calculator |
Tools are deliberately curated rather than generated dynamically. The OpenAPI document is used to validate calculator requests, while stable tool names and descriptions form the MCP interface.
Install
Python 3.11 and Poetry are recommended:
poetry installAn editable pip installation also works:
pip install -e .Configure
The server reads these environment variables:
Variable | Default | Purpose |
|
| Irish Tax Hub API base URL |
|
| OpenAPI file path or URL used for validation |
| unset | Optional API key forwarded to the API |
|
| HTTP timeout in seconds |
For production-backed local use:
export IRISHTAXHUB_BASE_URL="https://prod.aws.irishtaxhub.ie"
export IRISHTAXHUB_OPENAPI="https://prod.aws.irishtaxhub.ie/openapi.json"
poetry run irishtaxhub-mcpFor a locally running API, the defaults are sufficient. You can also run the module or FastMCP entrypoint directly:
python -m irishtaxhub_mcp.server
fastmcp run src/irishtaxhub_mcp/server.pyMCP client configuration
Example local standard-input/output configuration:
{
"mcpServers": {
"irishtaxhub": {
"command": "poetry",
"args": ["run", "irishtaxhub-mcp"],
"cwd": "/absolute/path/to/irishtaxhub-mcp",
"env": {
"IRISHTAXHUB_BASE_URL": "https://prod.aws.irishtaxhub.ie",
"IRISHTAXHUB_OPENAPI": "https://prod.aws.irishtaxhub.ie/openapi.json"
}
}
}
}Restart the client after changing its MCP configuration.
Examples
Discover the available calculators, inspect the selected input schema, and then calculate:
{"tool": "list_calculators", "arguments": {}}{
"tool": "get_calculator_schema",
"arguments": {"calculator_name": "refund"}
}{
"tool": "calculate_tax",
"arguments": {
"calculator_name": "refund",
"inputs": {
"marital_status": "single",
"year": 2025,
"employment_income": {"income": 50000, "tax_paid": 18000}
}
}
}Search the Revenue and treaty corpora:
{"tool": "search_revenue_documents", "arguments": {"query": "principal private residence"}}{"tool": "search_tax_treaties", "arguments": {"query": "employment income", "country": "France"}}Development
poetry run black --check .
poetry run isort --check-only .
poetry run flake8 .
poetry run pytestThe implementation calls the deployed HTTP API rather than importing API internals, keeping this
service small and independently deployable. src/irishtaxhub_mcp/asgi.py provides the ASGI
entrypoint used by the Lambda Web Adapter deployment.
Claude PR review
.github/workflows/claude-pr-review.yml can review pull requests when the repository has a valid
CLAUDE_CODE_OAUTH_TOKEN secret. Generate a replacement with claude setup-token when required,
then update it with:
gh secret set CLAUDE_CODE_OAUTH_TOKEN --repo jhurleyai/irishtaxhub-mcpThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceAutomatically converts any OpenAPI specification into an MCP server, exposing all HTTP endpoints as callable tools with support for various authentication methods and request types.2
- Alicense-qualityCmaintenanceA generic MCP server that dynamically converts OpenAPI-defined REST APIs into tools for LLMs like Claude. It supports multiple authentication methods and transport protocols, enabling seamless interaction with any OpenAPI-compliant API.18MIT
- AlicenseAqualityDmaintenanceA generic MCP server that dynamically exposes any OpenAPI-documented REST API to LLMs by auto-discovering endpoints. It provides tools for exploring API capabilities and making authenticated requests directly through natural language interfaces.29MIT
- AlicenseCqualityCmaintenanceMCP server that turns OpenAPI specs into tools and calls API175MIT
Related MCP Connectors
MCP server for AI access to Swagger by SmartBear.
MCP server for AI access to SmartBear tools, including BugSnag, Reflect, Swagger, PactFlow, QTM4J.
MCP server exposing the Backtest360 engine API as tools for AI agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jhurleyai/irishtaxhub-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server