# com.sponsorable/sponsorable (remote · app.sponsorable.com)

Find brands that already sponsor podcasts like yours, then reveal the buyer to pitch.

- Trust score: 68/100 (medium)
- Change this week: +4
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `app.sponsorable.com`: 68/100 (this document), [markdown](https://verifymcp.io/servers/com-sponsorable-sponsorable/app.md), [page](https://verifymcp.io/servers/com-sponsorable-sponsorable/app)

## Channel facts

- Endpoint: `https://app.sponsorable.com/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 63/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation check failed: no authorisation is required to call this server, and it exposes a tool marked destructive (reveal_contact).
  - HTTPS is enforced; there's no plaintext access path.
  - The HSTS (Strict-Transport-Security) header is present.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 73/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 2067 tokens (~121/item across 17 items; 17 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 99/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 98% of tool parameters carry a description.
  - Structured output schemas are declared (35% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http com-sponsorable-sponsorable https://app.sponsorable.com/mcp
```

### Codex

```toml
[mcp_servers.com-sponsorable-sponsorable]
url = "https://app.sponsorable.com/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-sponsorable-sponsorable": {
      "type": "remote",
      "url": "https://app.sponsorable.com/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add com-sponsorable-sponsorable --url https://app.sponsorable.com/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  com-sponsorable-sponsorable:
    url: "https://app.sponsorable.com/mcp"
```

### Other

```json
{
  "mcpServers": {
    "com-sponsorable-sponsorable": {
      "type": "http",
      "url": "https://app.sponsorable.com/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 68, +1)

No change was recorded against any check on this day. Stability & Change Management went from 17 to 20. That category is still filling its 30-day observation window: 5 days of observed history at the previous scan, 6 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-31 (score 67, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 66, +1)

No change was recorded against any check on this day. Stability & Change Management went from 7 to 10. That category is still filling its 30-day observation window: 2 days of observed history at the previous scan, 3 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-29 (score 65, +1)

No change was recorded against any check on this day. Stability & Change Management went from 3 to 7. That category is still filling its 30-day observation window: 1 days of observed history at the previous scan, 2 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-28 (score 64, 0)

- [functional improvement] Stability: unverified → 0.03

### 2026-07-27 (score 64, +40)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-26 (score 24)

First indexed and scored.

## MCP tools (17)

### `search` (~97 tokens)

Search Sponsors

Search Sponsorable's podcast-sponsorship database for brands that sponsor podcasts — the deep-research/Responses-API compatibility interface, paired with fetch. Matches sponsor names and domains and returns citable documents; pass a result's id to fetch for the full profile. For filtered or paginated search (category, industry, recency), use search_sponsors instead.

Input parameters:

- `query` (string, required): Sponsor name, product, or domain to search for

Output parameters:

- `results` (array)

### `fetch` (~82 tokens)

Fetch Sponsor Profile

Retrieve the Sponsorable profile for one podcast sponsor as a citable document — the deep-research/Responses-API compatibility interface, paired with search. The id is a sponsor domain, as returned by search (e.g. 'betterhelp.com'). For a structured JSON profile use get_sponsor instead.

Input parameters:

- `id` (string, required): Sponsor domain from a search result id

Output parameters:

- `id` (string)
- `metadata` (object)
- `text` (string)
- `title` (string)
- `url` (string)

### `find_sponsors_for_show` (~121 tokens)

Find Sponsors for a Show

Given a podcast's name or RSS feed URL, return the brands detected sponsoring it, falling back to brands active in the show's categories when few exact sponsors are found. Each result carries a short reason. Use this for "who would sponsor my show?" questions; it identifies one show per call and does not browse the podcast catalog. Without a linked account, results cover publicly listed sponsors only.

Input parameters:

- `feed_url` (string): The podcast's RSS feed URL (exact match; use when known)
- `show` (string): The podcast's name

Output parameters:

- `exact_sponsors` (array)
- `show` (object)
- `similar_sponsors` (array)

### `search_sponsors` (~294 tokens)

Search & Filter Sponsors

Search companies that sponsor podcasts. All filters are optional and combine (AND). Results are paginated (default 25 per page, max 100); page depth is capped at 20 — refine the filters instead of paging deep. Each result carries the sponsor's domain, name, industry, location, sponsorship/podcast counts, and a representative buyer contact (masked on credit-based plans). Without a linked account, results cover only publicly listed sponsors with top-line stats (no contact or company-detail fields), the last 90 days, first page only, max 25 results. For one company's full profile use get_sponsor; for its buyer-contact list use list_sponsor_contacts.

Input parameters:

- `category` (string): Category slug — find slugs with list_categories
- `industry` (string): Industry name, loosely matched free text (not an exact slug), e.g. 'Software'
- `last` (string): Only sponsors with a sponsorship in this recent window
- `limit` (integer): Results per page (1-100, default 25)
- `page` (integer): Page number (1-20, default 1)
- `podcast_sponsored` (string): Podcast ID — only sponsors that have sponsored this podcast
- `podcasts` (integer): Minimum number of distinct podcasts sponsored
- `search` (string): Match against sponsor name or domain
- `sponsorships` (integer): Minimum total sponsorship count

Output parameters:

- `data` (array)
- `pagination` (object)

### `get_sponsor` (~87 tokens)

Sponsor Profile

Full profile for one sponsor, addressed by domain: description, industry, location, size, sponsorship totals, top and newest podcasts, and top categories. Without a linked account, only publicly listed sponsors resolve, with top-line stats and category names only (no company details, no contact section).

Input parameters:

- `domain` (string, required): The sponsor's domain, e.g. 'athleticgreens.com'

Output parameters:

- `new_podcasts` (array)
- `sponsor` (object)
- `top_categories` (array)
- `top_podcasts` (array)

### `list_sponsor_contacts` (~134 tokens)

Sponsor Contacts

Contacts at the sponsoring company who are the likely buyers of podcast sponsorships — the people a podcaster or sales agency would pitch. Ordered by likelihood of owning the ad budget. Free to call. On credit-based plans, locked contacts come back masked (initials, no email/LinkedIn) with disclosure fields — has_email, email_domain, has_linkedin — showing what reveal_contact buys. Plans with contact data included get every contact unmasked here directly; those listings record deduplicated internal usage for billing parity (no credits are charged, nothing else changes).

Input parameters:

- `domain` (string, required): The sponsor's domain

### `reveal_contact` (~137 tokens)

Reveal Contact

Spend 1 credit to reveal a contact's full name, email, and LinkedIn URL. The unlock is permanent and org-wide: revealing an already-unlocked contact is free and never double-charges. Check the contact's has_email/has_linkedin fields from list_sponsor_contacts first so you know what the credit buys. Ask the user before revealing unless they already told you to, then set confirmed=true.

Input parameters:

- `confirmed` (boolean, required): Set true only after the user explicitly authorizes spending a credit
- `contact_id` (string, required): The contact_id from list_sponsor_contacts
- `domain` (string, required): The sponsor's domain

### `list_categories` (~56 tokens)

Podcast Categories

The full podcast category tree with per-category sponsorship totals. Category slugs from here feed the category filter on search_sponsors and search_podcasts. Without a linked account the totals cover the last 90 days and internal identifiers are omitted.

Output parameters:

- `data` (array)

### `get_category` (~39 tokens)

Category Detail

Category dossier: totals plus the top sponsors and podcasts in the category. Free to call.

Input parameters:

- `slug` (string, required): The category slug from list_categories

### `search_podcasts` (~264 tokens)

Search Podcasts

Search podcasts by name, category, sponsor activity, or the industry of their sponsors. Free to call. Results are paginated (default 25 per page, max 100); page depth is capped at 20 — refine the filters instead of paging deep. Each result carries the podcast_id, name, categories, episode count, and sponsor/sponsorship counts. For one podcast's full profile and its top sponsors, use get_podcast.

Input parameters:

- `category` (string): Category slug — find slugs with list_categories
- `episodes` (integer): Minimum episode count
- `industry` (string): Only podcasts sponsored by companies in this industry (loosely matched free text, not a slug)
- `last` (string): Only podcasts with a sponsorship in this recent window
- `limit` (integer): Results per page (1-100, default 25)
- `page` (integer): Page number (1-20, default 1)
- `search` (string): Match against podcast name
- `sort_by` (string): Sort key (default: sponsors)
- `sort_order` (string): Sort direction (default: desc)
- `sponsors` (integer): Minimum number of distinct sponsors
- `sponsorships` (integer): Minimum total sponsorship count

### `get_podcast` (~47 tokens)

Podcast Detail

Full profile for one podcast: overview, host contact, and its top and newest sponsors. Free to call.

Input parameters:

- `podcast_id` (string, required): The podcast_id from search_podcasts

### `list_lists` (~33 tokens)

Saved Lists

The organization's saved lists — named collections of sponsors, podcasts, categories, and contacts — with item counts. Free to call.

### `get_list` (~78 tokens)

List Detail

Full contents of a saved list: sponsors, podcasts (Pro plans), categories, and contacts. Contacts follow the same masking and reveal rules as list_sponsor_contacts, including the deduplicated internal usage record on included-contact plans (no credits are charged).

Input parameters:

- `list_id` (string, required): The list's id (from list_lists or create_list)

### `create_list` (~42 tokens)

Create List

Create a new, empty saved list. Free to call.

Input parameters:

- `name` (string, required): A short name for the list, e.g. "Q3 outreach targets"

### `add_list_item` (~111 tokens)

Add to List

Add an item to a saved list. item_id is the sponsor's domain, a podcast_id (Pro plans), a category_id, or a contact_id. Adding an item that's already in the list is a no-op. Free to call.

Input parameters:

- `item_id` (string, required): sponsor: domain, podcast: podcast_id, category: category_id, contact: contact_id
- `item_type` (string, required)
- `list_id` (string, required): The list's id (from list_lists or create_list)

### `remove_list_item` (~78 tokens)

Remove from List

Remove an item from a saved list. Removing an item that isn't in the list is a no-op. Free to call.

Input parameters:

- `item_id` (string, required): The item's id as shown in get_list (domain, podcast_id, category_id, or contact_id)
- `list_id` (string, required): The list's id (from list_lists)

### `delete_list` (~69 tokens)

Delete List

Permanently delete a saved list and everything in it. This cannot be undone — confirm with the user before calling, then set confirmed=true.

Input parameters:

- `confirmed` (boolean, required): Set true only after the user explicitly confirms permanent deletion
- `list_id` (string, required): The list's id (from list_lists)

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/com-sponsorable-sponsorable/app#diagnostics

## Score history

- 2026-08-03: 68
- 2026-08-02: 68
- 2026-08-01: 67
- 2026-07-31: 67
- 2026-07-30: 66
- 2026-07-29: 65
- 2026-07-28: 64
- 2026-07-27: 64
- 2026-07-26: 24

## Links

- Remote endpoint: https://app.sponsorable.com/mcp
- Repository: https://github.com/sponsorable/mcp
- Changelog RSS feed: https://verifymcp.io/servers/com-sponsorable-sponsorable/app/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-sponsorable-sponsorable/app/changelog.json
- HTML version of this page: https://verifymcp.io/servers/com-sponsorable-sponsorable/app
