Skip to main content
Glama
dmarkey

rip-ie-mcp

by dmarkey

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-mcp

Or with uv:

uvx rip-ie-mcp

Related MCP server: Tavily MCP Server

Tools

search_death_notices

Search for death notices with optional filters:

Parameter

Type

Description

firstname

string

First name to search for

surname

string

Surname to search for

county

string

County name (e.g. Dublin, Cork, Galway)

date_from

string

Start date (YYYY-MM-DD HH:MM:SS)

date_to

string

End date (YYYY-MM-DD HH:MM:SS)

funeral_arrangements_later

boolean

Filter for notices where funeral arrangements are TBD

page

integer

Page number (default: 1)

per_page

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_mcp

How 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 tools
get_death_noticeA

Get full details of a specific death notice including description, funeral arrangements, photo, and family information.

ParametersJSON Schema
NameRequiredDescriptionDefault
notice_idYesThe death notice ID (from search results or RIP.ie URL)

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.1/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.5/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNoPage number for pagination
countyNoCounty name (e.g. Dublin, Cork, Galway)
date_toNoEnd date in format YYYY-MM-DD HH:MM:SS (e.g. 2026-04-02 23:59:59)
surnameNoSurname to search for
per_pageNoNumber of results per page (max 100)
date_fromNoStart date in format YYYY-MM-DD HH:MM:SS (e.g. 2026-03-27 00:00:00)
firstnameNoFirst name to search for
funeral_arrangements_laterNoFilter for notices where funeral arrangements are TBD

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.4/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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

A4.4/5.0
Disambiguation5/5

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.

Naming Consistency5/5

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.

Tool Count5/5

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.

Completeness5/5

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

ActivityInactive
ResponsivenessSyncing

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

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    Provides job search functionality using Careerjet API with features for keyword and location-based searches, advanced filtering, and support for 50+ countries and languages.
    3
  • A
    license
    A
    quality
    D
    maintenance
    Search companies, officers, and filing history across 140+ jurisdictions worldwide using the OpenCorporates API.
    5
    19
    MIT
  • A
    license
    Not graded
    quality
    A
    maintenance
    PubCrawl 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.
    254
    13
    MIT

Latest Blog Posts

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