rip-ie-mcp
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., "@rip-ie-mcpsearch death notices for O'Brien in Dublin"
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.
RIP.ie MCP Server
An MCP (Model Context Protocol) server for searching and browsing Irish death notices from RIP.ie.
Install from PyPI
pip install rip-ie-mcpOr with uv:
uvx rip-ie-mcpRelated MCP server: Tavily MCP Server
Tools
search_death_notices
Search for death notices with optional filters:
Parameter | Type | Description |
| string | First name to search for |
| string | Surname to search for |
| string | County name (e.g. Dublin, Cork, Galway) |
| string | Start date ( |
| string | End date ( |
| boolean | Filter for notices where funeral arrangements are TBD |
| integer | Page number (default: 1) |
| integer | Results per page (default: 40, max: 100) |
All filters are optional and can be combined. Results are sorted by date (newest first), then surname alphabetically. Notices with multiple associated locations (e.g. birthplace and residence) are deduplicated and locations are combined.
get_death_notice
Get full details of a specific death notice by ID, including:
Full obituary text
Photo URL
Date of death and burial/funeral date
Address and locations
Webstream links
Charity/donation info
list_counties
Lists all 32 Irish counties (including Northern Ireland) with their IDs.
Configuration
Claude Code
Add to ~/.claude.json:
{
"mcpServers": {
"rip-ie": {
"command": "uvx",
"args": ["rip-ie-mcp"]
}
}
}Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"rip-ie": {
"command": "uvx",
"args": ["rip-ie-mcp"]
}
}
}Development
git clone https://github.com/dmarkey/rip-ie-mcp.git
cd rip-ie-mcp
uv sync
uv run python -m rip_ie_mcpHow it works
Search uses the RIP.ie public GraphQL API (
https://rip.ie/api/graphql) — no authentication required.Detail fetches the death notice page and extracts data from the embedded Next.js
__NEXT_DATA__payload, which includes the full obituary, photo attachment, and funeral details.Photo images are served from
https://img-dedicated.rip.ie/.
Available Tools
3 toolsget_death_noticeA
Get full details of a specific death notice including description, funeral arrangements, photo, and family information.
| Name | Required | Description | Default |
|---|---|---|---|
| notice_id | Yes | The death notice ID (from search results or RIP.ie URL) |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of behavioral disclosure. It clearly implies a read-only operation (getting details), but it doesn't mention potential errors (e.g., invalid ID), authentication needs, or that it returns a single record vs. a list. The absence of any side-effect warnings is acceptable for a simple get, but richer context like 'returns 404 if not found' would improve transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that concisely lists what the tool returns. No wasted words, and the structure is clear.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple get-by-ID tool with one parameter and an output schema, the description is complete. It covers what the tool does and what fields are included, and the existing output schema handles return value details. There is nothing missing given the tool's simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema fully documents the only parameter notice_id with a clear explanation of its origin (search results or RIP.ie URL). The tool description itself adds no additional parameter semantics. With 100% schema coverage, the baseline is 3, and the description doesn't exceed that.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Get') and resource ('full details of a specific death notice'), and enumerates the included content (description, funeral arrangements, photo, family information). It clearly differentiates from sibling tools list_counties and search_death_notices, which are about browsing/searching rather than fetching one record.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies a workflow: search first, then get details for a specific notice. The parameter description reinforces this by noting the ID comes from search results or a RIP.ie URL. However, it doesn't explicitly state when not to use this tool or name the alternative for finding IDs, so it falls short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_countiesA
List all available Irish counties and their IDs for filtering death notices.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden. It reveals the tool's read-only nature ('List') and its output (counties and IDs). It adds context about the scope ('all available') and its role in filtering, which is sufficient for a simple reference tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler. It efficiently conveys the action, the subject, and the purpose in one concise statement.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter reference list, the description is complete: it states the output (counties and IDs) and the use case (filtering death notices). The existence of an output schema means return values are inherently documented, so no further detail is needed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, and the schema is empty (100% coverage vacuously). The description adds semantic value by stating that all counties are listed, implying no filtering input is needed. Baseline for 0 params is 4.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'List all available Irish counties and their IDs'. It specifies the resource (counties) and the purpose (filtering death notices), distinguishing it from sibling tools which search or retrieve notices.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use this tool: before filtering death notices, to obtain county IDs. While it doesn't explicitly name alternatives or exclusions, the purpose is clear and the context distinguishes it from search/get tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_death_noticesA
Search for death notices on RIP.ie. All filters are optional and can be combined.
At least one filter should be provided (name, county, or date range). Results are sorted by date (newest first), then surname alphabetically. Use get_death_notice for full details including photos.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number for pagination | |
| county | No | County name (e.g. Dublin, Cork, Galway) | |
| date_to | No | End date in format YYYY-MM-DD HH:MM:SS (e.g. 2026-04-02 23:59:59) | |
| surname | No | Surname to search for | |
| per_page | No | Number of results per page (max 100) | |
| date_from | No | Start date in format YYYY-MM-DD HH:MM:SS (e.g. 2026-03-27 00:00:00) | |
| firstname | No | First name to search for | |
| funeral_arrangements_later | No | Filter for notices where funeral arrangements are TBD |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral disclosure burden. It reveals sorting order (newest first, then surname alphabetically), the requirement of at least one filter, and that filters combine, which are key behavioral traits. It does not mention rate limits, error handling, or pagination details, but these are either in schema or less critical, so the disclosure is strong.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured, with a clear opening statement, a brief usage requirement, a sorting note, and a pointer to a related tool. Every sentence earns its place, and there is no redundant or vocabulary-overloaded content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (8 params, all optional) and the presence of an output schema, the description provides sufficient context for selecting and invoking the tool. It covers search scope, filter constraints, sorting, and alternatives. It could add a bit more about pagination or edge cases, but the schema and output schema already provide structural details, making this adequately complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers all 8 parameters with descriptions, so the baseline is 3. The description adds meaningful semantics beyond the schema by clarifying that filters can be combined and emphasizing that at least one of name, county, or date range should be provided, which is a usage constraint not explicitly encoded in the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb 'Search' and a concrete resource 'death notices on RIP.ie', making the tool's purpose immediately clear. It also distinguishes itself from sibling tools by explicitly directing users to get_death_notice for full details, clarifying that this tool is for search/filtering rather than retrieving full notices.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly states that all filters are optional and can be combined, and that at least one filter should be provided, giving concrete usage guidance. It also points to an alternative tool (get_death_notice) for detailed information, but it does not explicitly say when not to use this tool, though the alternative reference implies a search-vs-detail split.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool serves a distinct purpose: listing reference data, performing searches, and fetching full details. There is no overlap in functionality, and the descriptions clearly indicate when to use each tool.
All tool names follow the consistent verb_noun pattern: list_counties, search_death_notices, get_death_notice. The naming is uniform and predictable, making it easy for an agent to infer behavior.
With only 3 tools, the server is tightly scoped to its purpose of browsing death notices. Each tool is necessary and provides clear value without redundancy, fitting the niche domain well.
The tool set covers the full read-only lifecycle: reference data for filtering, searching, and retrieving detailed information. There are no obvious missing operations for the stated purpose, as it is a retrieval-focused service.
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 Connectors
Search UK companies, land registry prices, charities, OS locations, and traffic data
Search newly registered, expired, aged, active, deleted and for-sale domains, plus WHOIS and DNS.
People and property search for Claude and ChatGPT. Phones, emails, addresses, relatives, properties.
Query professional profiles, search candidates, and get AI-powered summaries and job fit analysis.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceProvides job search functionality using Careerjet API with features for keyword and location-based searches, advanced filtering, and support for 50+ countries and languages.3
- AlicenseAqualityCmaintenanceProvides AI assistants with real-time web search capabilities, intelligent data extraction from web pages, website mapping, and web crawling through Tavily's API.420,899MIT
- AlicenseAqualityDmaintenanceSearch companies, officers, and filing history across 140+ jurisdictions worldwide using the OpenCorporates API.519MIT
- AlicenseNot gradedqualityAmaintenancePubCrawl provides LLMs with access to PubMed, FDA/UK drug labeling, and ClinicalTrials.gov. It enables searching literature, retrieving abstracts and full texts, comparing US and UK drug labels, and exploring clinical trials.25413MIT
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/dmarkey/rip-ie-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server