
Security News
White House Authorizes Private Companies to Conduct Offensive Cyber Operations
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.
@collabsmap/mcp-server
Advanced tools
Model Context Protocol server for CollabsMap — discover travel brand collab opportunities for content creators.
A Model Context Protocol server that exposes the CollabsMap public API to LLM agents (Claude Desktop, Cursor, Cline, Continue, custom agents).
CollabsMap indexes thousands of travel brands — hotels, resorts, tour operators, tourism boards (DMOs), airlines, and cruises — that run creator collaboration programs. With this MCP server installed, you can ask your agent things like:
The agent calls the right tool, hits the public CollabsMap API, and weaves the results into its response.
Add the server to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"collabsmap": {
"command": "npx",
"args": ["-y", "@collabsmap/mcp-server"]
}
}
}
Restart Claude Desktop. The four tools below will appear in the tools menu.
Add to .cursor/mcp.json in your project (or ~/.cursor/mcp.json globally):
{
"mcpServers": {
"collabsmap": {
"command": "npx",
"args": ["-y", "@collabsmap/mcp-server"]
}
}
}
In Cline's settings, add an MCP server entry:
{
"collabsmap": {
"command": "npx",
"args": ["-y", "@collabsmap/mcp-server"]
}
}
In ~/.continue/config.yaml:
mcpServers:
- name: collabsmap
command: npx
args: ["-y", "@collabsmap/mcp-server"]
All four tools are read-only. They route through the public CollabsMap API at https://collabsmap.com/api/v1.
| Tool | Input | What it does |
|---|---|---|
search_collabs | { country?, type?, compensation?, platform?, limit? } | Search listings/opportunities. Filter by country slug (thailand, united-states), brand type, compensation model, or platform. |
get_listing | { slug } | Fetch one listing by URL slug, including its active opportunities. |
get_destination_stats | { slug } | Get aggregate stats for a country (listing count, city count, opportunity count). |
list_destinations | {} | Return all destinations with active programs and their counts. |
// "Find hotels in Thailand with creator programs."
{ "name": "search_collabs", "arguments": { "country": "thailand", "type": "hotel" } }
// "Which countries have the most travel creator collabs?"
{ "name": "list_destinations", "arguments": {} }
// "Tell me about Indonesia."
{ "name": "get_destination_stats", "arguments": { "slug": "indonesia" } }
// "Show me wolo-travel."
{ "name": "get_listing", "arguments": { "slug": "wolo-travel" } }
| Env var | Default | Purpose |
|---|---|---|
COLLABSMAP_API_BASE | https://collabsmap.com/api/v1 | Override for local development against a non-production deployment. |
The CollabsMap public API enforces an IP-based rate limit of 100 requests per hour. The server surfaces X-RateLimit-* headers to clients, and when limited returns a CollabsApiError with status: 429 and (when available) retry_after_seconds. Most agents don't fan out wildly, so this is plenty for interactive use.
Found a bug or have a feature request? Get in touch via https://collabsmap.com.
MIT
FAQs
Model Context Protocol server for CollabsMap — discover travel brand collab opportunities for content creators.
The npm package @collabsmap/mcp-server receives a total of 23 weekly downloads. As such, @collabsmap/mcp-server popularity was classified as not popular.
We found that @collabsmap/mcp-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.