Skip to main content
Glama
perwinroth

got-cosy-mcp

by perwinroth

got-cosy-mcp

An MCP server for Got Cosy, the Feel Layer for hotel data: cosiness scores for about 6,300 independent hotels, computed from guest reviews and photos, with verified booking links. Free and read-only.

This package is a thin stdio proxy. Each tool call is forwarded over standard MCP JSON-RPC to Got Cosy's hosted Streamable HTTP endpoint at https://gotcosy.com/api/mcp and the result is returned unchanged. There are no local secrets, no API key and no local data: this server only needs outbound HTTPS.

If your client speaks Streamable HTTP directly, you can skip this package entirely and point it at https://gotcosy.com/api/mcp (manifest: https://gotcosy.com/mcp.json). Use this stdio proxy for clients that only support stdio-based MCP servers.

Install and run

Using npx (no install step):

npx got-cosy-mcp

Using Docker:

docker build -t got-cosy-mcp .
docker run -i --rm got-cosy-mcp

Add to an MCP client config (example for a client that reads a JSON config of servers):

{
  "mcpServers": {
    "got-cosy": {
      "command": "npx",
      "args": ["-y", "got-cosy-mcp"]
    }
  }
}

Related MCP server: odh-mcp-server

Tools

find_cosy_hotels

Find live, cosy-scored hotels. Only hotels that clear the public floor (score 5.0+) are returned. All arguments are optional.

Argument

Type

Description

city

string

City name, e.g. "Paris"

country

string

Country name, e.g. "France"

min_score

number

Minimum cosy score 0-10 (the public floor of 5.0 always applies)

limit

number

Max results, default 20, max 100

Example call:

{
  "name": "find_cosy_hotels",
  "arguments": { "city": "Paris", "limit": 5 }
}

Example result (truncated):

{
  "hotels": [
    {
      "slug": "les-dames-du-pantheon",
      "name": "Les Dames du Panthéon",
      "city": "Paris",
      "country": "France",
      "cosy_score": 6.7,
      "url": "https://gotcosy.com/en/hotels/les-dames-du-pantheon",
      "verified_booking": "stay22",
      "website": "https://www.hotellesdamesdupantheon.com"
    }
  ],
  "total": 81,
  "limit": 5,
  "offset": 0
}

get_hotel_feeling

Get one hotel's cosy score, evidence signals and description by its Got Cosy slug (as returned by find_cosy_hotels, or from a gotcosy.com/en/hotels/<slug> URL).

Argument

Type

Required

Description

slug

string

yes

The hotel's Got Cosy slug

Hotels below the public floor return {"below_bar": true} with no score exposed.

Data and scoring

Got Cosy scores independent hotels 0-10 for warmth, intimacy and character, drawn from guest reviews and photos rather than star ratings or price. Only hotels that clear a public floor of 5.0 are exposed through these tools. See gotcosy.com for the full index and gotcosy.com/llms-full.txt for machine-readable documentation.

Licence

MIT, see LICENSE.

Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

View all related MCP servers

Related MCP Connectors

  • Hotel booking MCP server. Search, book, and manage reservations across 250K+ properties worldwide.

  • Unofficial read-only MCP server for VeryChic hotel offers

  • Geo-based flight search MCP server. Find more flights between any two places on earth

View all MCP Connectors

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/perwinroth/got-cosy-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server