Juicebox-ApS/upsound-mcp-server
If you are the rightful owner of upsound-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The Upsound MCP Server is designed to facilitate the search and retrieval of information about Upsound studios, providing users with detailed listings and studio details.
Upsound MCP Server
MCP Server for searching Upsound and get listing details.
Tools
-
upsound_search_studios
- Search for Upsound studios
- Required Input:
country
(string) - Optional Inputs:
location
(string)minPrice
(number)maxPrice
(number)
- Returns: Array of studios with details like name, price, location, etc.
-
upsound_studio_details
- Get detailed information about a specific Upsound studio
- Required Input:
id
(string) - Optional Inputs:
checkin
(string, YYYY-MM-DD)
- Returns: Detailed listing information including description, etc.
Features
- Respects Upsound's robots.txt rules
- Uses cheerio for HTML parsing
- No API key required
- Returns structured JSON data
- Reduces context load by flattening and picking data
Setup
Installing on Claude Desktop
Before starting make sure Node.js is installed
on your desktop for npx
to work.
-
Go to: Settings > Developer > Edit Config
-
Add the following to your
claude_desktop_config.json
:
{
"mcpServers": {
"upsound": {
"command": "npx",
"args": ["-y", "juicebox-aps/upsound-mcp-server"]
}
}
}
To ignore robots.txt for all requests, use this version with
--ignore-robots-txt
args
{
"mcpServers": {
"upsound": {
"command": "npx",
"args": [
"-y",
"juicebox-aps/upsound-mcp-server",
"--ignore-robots-txt"
]
}
}
}
- Restart Claude Desktop and plan your next trip that include Upsound!
Build (for devs)
npm install
npm run build
License
This MCP server is licensed under the MIT License.