SERVER

rescuedogs_eu

Rank #52,152

smithery/ssatama/rescuedogs_eu

MCP server for discovering rescue dogs from European and UK organizations. Search, filter, and get detailed profiles of dogs available for adoption. ## Connect ### Remote (recommended) No install. Add the endpoint as a custom connector or remote MCP server: ``` https://mcp.rescuedogs.me/mcp ``` It speaks MCP streamable HTTP, needs no authentication, and is read-only. ### Local (npm, stdio) ```bash npm install -g rescuedogs-mcp-server ``` Then add it to your client's MCP config. For Claude Desktop that is `~/Library/Application Support/Claude/claude_desktop_config.json` on macOS or `%APPDATA%\Claude\claude_desktop_config.json` on Windows: ```json { "mcpServers": { "rescuedogs": { "command": "npx", "args": ["-y", "rescuedogs-mcp-server"] } } } ``` ## Available Tools ### rescuedogs_search_dogs Search for rescue dogs with comprehensive filtering. ``` "Find medium-sized dogs good for first-time owners" "Show me golden retrievers available to adopt in the UK" "Find low-energy dogs suitable for apartments" ``` **Parameters:** - `query` - Free-text search - `breed` - Filter by breed name - `breed_group` - Filter by FCI group (Herding, Sporting, etc.) - `size` - Tiny, Small, Medium, Large, XLarge - `age_category` - puppy, young, adult, senior - `sex` - male, female - `energy_level` - low, medium, high, very_high - `experience_level` - first_time_ok, some_experience, experienced_only - `home_type` - apartment_ok, house_preferred, house_required - `adoptable_to_country` - ISO country code (GB, IE, FR, DE) - `organization_id` - Restrict to one rescue (see `rescuedogs_list_organizations`) - `good_with_kids`, `good_with_dogs`, `good_with_cats` - boolean - `limit` (1-50, default 10), `offset` - pagination - `include_images` - Include dog photos (default: false, max 5 dogs) - `image_preset` - `thumbnail` (200x200) or `medium` (400x400) - `response_format` - `markdown` (default) or `json` ### rescuedogs_get_dog_details Get full details for a specific dog including AI-generated personality profile. ``` "Tell me about the dog with slug 'buddy-12345'" "Show me details for Max" ``` **Parameters:** - `slug` - Dog's URL slug (required) - `include_image` - Include photo (default: true) - `image_preset` - `thumbnail` or `medium` (default) - `response_format` - `markdown` (default) or `json` ### rescuedogs_list_breeds Get available breeds with counts and statistics. ``` "What breeds are available?" "Show me herding breeds with at least 10 dogs" ``` **Parameters:** - `breed_group` - Filter by FCI group - `min_count` - Minimum dogs available - `limit` - Number of breeds to return (1-100, default 20) - `response_format` - `markdown` (default) or `json` ### rescuedogs_get_statistics Get overall platform statistics. ``` "How many rescue dogs are available?" "Show me platform statistics" ``` **Parameters:** - `response_format` - `markdown` (default) or `json` ### rescuedogs_get_filter_counts Get available filter options with counts based on current filters. ``` "What filter options are available if I've selected Labrador breed?" "Show me available sizes for dogs in Spain" ``` **Parameters:** - `current_filters` - Object with any of `breed`, `size`, `age_category`, `sex`, `adoptable_to_country` - `response_format` - `markdown` (default) or `json` ### rescuedogs_list_organizations List rescue organizations with their statistics. ``` "Which rescue organizations are in the UK?" "Show me all organizations" ``` **Parameters:** - `country` - Filter by ISO country code - `active_only` - Only active organizations (default: true) - `limit` - Number to return (1-50, default 20) - `response_format` - `markdown` (default) or `json` ### rescuedogs_match_preferences Find dogs matching your lifestyle preferences. ``` "I live in an apartment, have moderate activity, and am a first-time dog owner" "Find dogs for an active family with a house and garden" ``` **Parameters:** - `living_situation` - apartment, house_small_garden, house_large_garden, rural - `activity_level` - sedentary, moderate, active, very_active - `experience` - first_time, some, experienced - `has_children`, `has_other_dogs`, `has_cats` - boolean. Set to filter; omit to not filter on it at all - `adoptable_to_country` - ISO country code - `limit` - Number of matches (1-20, default 5) - `include_images` - Include dog photos (default: false) - `response_format` - `markdown` (default) or `json` ### rescuedogs_get_adoption_guide Get information about the rescue dog adoption process. ``` "How does rescue dog adoption work?" "Tell me about transport for adopting to the UK" "What fees should I expect?" ``` **Parameters:** - `topic` - overview, transport, fees, requirements, timeline - `country` - ISO code for country-specific info ## Geographic Scope Dogs are listed by European and UK rescue organizations. They are currently located in the UK, Germany, Serbia, Bulgaria, Bosnia, Turkey and Cyprus, and most rescues ship across the EU, EEA and UK. US, Canadian and Australian rescues are not covered. Use `rescuedogs_list_organizations` to see where each rescue ships, and `rescuedogs_get_filter_counts` for the live list of destination countries - coverage changes as organizations are added. ## Country Codes Use these codes for the `adoptable_to_country` parameter: | Code | Country | |------|---------| | GB | United Kingdom (UK also accepted) | | IE | Ireland | | DE | Germany | | FR | France | | ES | Spain | | IT | Italy | | NL | Netherlands | | BE | Belgium | | AT | Austria | | RO | Romania | | GR | Greece | | BG | Bulgaria | | CY | Cyprus | Dogs can be adopted to countries where the rescue organization ships to. Use `rescuedogs_list_organizations` to see which countries each organization serves. ## Data Source All data comes from [rescuedogs.me](https://www.rescuedogs.me), which aggregates listings from independent rescue organizations. At the time of writing that is roughly 1,400 available dogs across 96 breeds from 11 organizations; call `rescuedogs_get_statistics` for current figures. About 99% of dogs carry an AI-generated personality profile. The platform is powered by the open-source [rescue-dog-aggregator](https://github.com/ssatama/rescue-dog-aggregator) project, which handles collection, breed standardization, AI personality extraction, and the public API. ### How the data is gathered, and how to be removed Listings are collected from the public adoption pages of each rescue organization. Nothing behind a login, paywall or `robots.txt` restriction is collected, and no personal data about adopters or staff is stored. Every result links to the rescue's own adoption page. This project sends people to the rescues; it does not take applications, take payment, or stand between an adopter and an organization. If you run one of these organizations and want your listings removed, changed, or credited differently, open an issue on [rescue-dog-aggregator](https://github.com/ssatama/rescue-dog-aggregator/issues) or contact the maintainer. Removal requests are honoured, and no justification is required. ## Transports | Transport | Entrypoint | Used by | |-----------|-----------|---------| | stdio | `dist/index.js` (`npm start`) | Local clients, the npm package, Smithery | | Streamable HTTP | `dist/http.js` (`npm run start:http`) | The remote endpoint at `/mcp` | The HTTP transport is stateless: every request gets its own server instance, so there are no sessions to expire and it scales horizontally without shared state. SSE is not implemented - it is deprecated in the MCP SDK, and the current spec revision defines only stdio and streamable HTTP. The public endpoint is rate limited per IP, 120 requests/minute and 3,000 requests/hour. `/health` is exempt. Those ceilings are deliberately generous. Hosted MCP clients egress from small shared IP pools, so a per-IP bucket is shared by everyone behind that client; the limits exist to stop a scraper hammering the backend, not to ration normal use. Run it locally: ```bash npm run dev:http # tsx, no build step # or npm run build && npm run start:http ``` Then point the [MCP Inspector](https://modelcontextprotocol.io/docs/tools/inspector) at `http://localhost:3000/mcp` with transport "Streamable HTTP".

First listed
Aug 24, 2026
Last publish date
OVERVIEW

rescuedogs_eu is a Model Context Protocol (MCP) server published by ssatama. It ranks #52,152 of 132,046 servers tracked on MCP Toplist, and its repository has 1 GitHub stars. rescuedogs_eu is listed on Smithery, and ships as a single rolling release with no explicit version metadata. It was first listed on Aug 24, 2026.

STANDING
#52,152of 132,046 tracked serversTop 50%

Ranks ahead of 79,894 of 132,046 servers on MCP Toplist.

CONNECT

Use rescuedogs_eu

Remote authHosted remote, sign-in required

Hosted remote endpoint gated by authentication — connect via its URL and authenticate with the provider (OAuth flow or an API key/header, per its docs).

Remote · HTTP
claude mcp add --transport http rescuedogs-eu https://server.smithery.ai/ssatama/rescuedogs_eu/mcp

This endpoint requires authentication — see the server’s docs for credentials.

BADGE

Show your rank

Maintain this server? Add the live rank badge to your README — it updates automatically as the leaderboard changes.

MCP Toplist: Top 50% of 132,046
Markdown
[![MCP Toplist](https://mcptoplist.com/badge/smithery%2Fssatama%2Frescuedogs_eu.svg)](https://mcptoplist.com/server/smithery%2Fssatama%2Frescuedogs_eu)
HTML
<a href="https://mcptoplist.com/server/smithery%2Fssatama%2Frescuedogs_eu"><img src="https://mcptoplist.com/badge/smithery%2Fssatama%2Frescuedogs_eu.svg" alt="MCP Toplist: Top 50% of 132,046" /></a>

Variants: append ?metric=score or ?metric=stars to the image URL.

REGISTRIES

Listed on 1 registry

ORGANIZATION

ssatama

Organization
Servers in org
3
Versions across org
0
VERSIONS

Not versioned

This server is published through a registry that does not expose explicit version metadata, and no GitHub release tags were found on the linked repository. The listing tracks a single rolling release.

FAQ

Frequently asked questions

Who maintains rescuedogs_eu?
rescuedogs_eu is maintained by ssatama, which publishes 3 MCP servers (0 total versions) tracked on MCP Toplist.
Is rescuedogs_eu listed on the Official MCP Registry?
rescuedogs_eu is not on the Official MCP Registry. It is listed on Smithery.
How many versions does rescuedogs_eu have?
rescuedogs_eu ships as a single rolling release with no explicit version metadata.
Where can I find the source code for rescuedogs_eu?
The source code for rescuedogs_eu is hosted at github.com/ssatama/rescuedogs-mcp-server.
Used in projects

Do you run this server?

Add to a project

Community projects list the MCP servers behind real agents and apps. Publish yours and this page will link to it.

EXPLORE