# ProductClank (remote · mcp.productclank.com)

Boost posts and launch community growth campaigns from your AI assistant. OAuth, credit-billed.

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

## Components

- remote · `mcp.productclank.com`: 78/100 (this document), [markdown](https://verifymcp.io/servers/com-productclank-productclank/mcp.md), [page](https://verifymcp.io/servers/com-productclank-productclank/mcp)

## Channel facts

- Endpoint: `https://mcp.productclank.com/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `0.3.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**: 89/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation is enforced on tool calls, advertised via RFC 9728 protected-resource metadata. Discovery is public, which costs nothing: no tool can be invoked without a token.
  - HTTPS is enforced; there's no plaintext access path.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
  - The authorisation server offers only Dynamic Client Registration (RFC 7591), which MCP 2026-07-28 deprecated in favour of Client ID Metadata Documents.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 68/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 1333 tokens (~166/item across 8 items; 8 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **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-productclank-productclank https://mcp.productclank.com/mcp
```

### Codex

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

### opencode

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

### OpenClaw

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

### Hermes

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

### Other

```json
{
  "mcpServers": {
    "com-productclank-productclank": {
      "type": "http",
      "url": "https://mcp.productclank.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 78, +1)

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

### 2026-07-31 (score 77, +5)

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

### 2026-07-30 (score 72, 0)

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

### 2026-07-29 (score 72, +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-28 (score 71, +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-27 (score 70, 0)

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

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

First indexed and scored.

## MCP tools (8)

### `search_products` (~75 tokens)

Search ProductClank products

Search the user's ProductClank products by name and return their IDs. A product_id is required to create or boost a campaign — use this to resolve it, then confirm the match with the user.

Input parameters:

- `limit` (integer): Max results (default 5)
- `query` (string, required): Product name or keyword to search for

### `create_product` (~284 tokens)

List a product on ProductClank

List a new product on ProductClank as a token-free listing (no crypto/token, no wallet). At minimum pass a `url` — the server auto-fills the name, tagline, description, logo, and X handle from the site; any field you pass explicitly overrides what's extracted. Socials are optional. Use this when search_products finds no existing match and the user wants to run a boost or campaign for a product that isn't listed yet. Returns the new product's id (and reuses an existing listing if one already matches, rather than duplicating). FREE — no credits charged. Confirm the product details with the user before calling.

Input parameters:

- `category` (array): Category tags (optional).
- `description` (string): Short description of what the product does (optional).
- `logo` (string): Logo image URL (optional; otherwise auto-resolved from the site).
- `name` (string): Product name. Optional if `url` is given (extracted from the site); required otherwise.
- `tagline` (string): One-line value proposition (optional; overrides extracted).
- `twitter` (string): X/Twitter handle or profile URL (optional).
- `url` (string): Product website URL — auto-fills the listing. Provide this or `name`.
- `website` (string): Canonical website, if different from `url` (optional).

### `check_balance` (~52 tokens)

Check credit balance

Return the connected user's ProductClank credit balance and plan. Use before launching a campaign to confirm they have enough credits (a content campaign costs 1000; a reply boost 200; likes/reposts 300).

### `boost_post` (~235 tokens)

Boost a social post

Rally the ProductClank community to engage with a specific social post. Creates a boost campaign and spends the user's credits: 'replies' generates 10 AI reply drafts (200 credits); 'likes' (30 likes) and 'repost' (10 reposts) cost 300. Supports Twitter/X, Instagram, TikTok, LinkedIn, Reddit, and Farcaster — the platform is auto-detected from the URL. product_id is OPTIONAL: link a product (from search_products or create_product) to tailor replies with the product name, or omit it for a tweet-first boost that uses generic amplification language. Confirm the action and its credit cost with the user before calling.

Input parameters:

- `action_type` (string): How the community engages. Default: replies. Reposts are Twitter/Farcaster only.
- `post_url` (string, required): Full URL of the post to boost (any supported platform)
- `product_id` (string): Optional product UUID (from search_products or create_product). Omit for a tweet-first boost.
- `reply_guidelines` (string): Optional guidance for the tone and content of community replies

### `suggest_content_campaign` (~243 tokens)

Preview a content campaign

Preview a content campaign for a product BEFORE launching it. FREE — nothing is created and no credits are charged. Returns an AI-drafted campaign (title, description, call-to-action) plus whether the user can afford to launch it (1000 credits). Use this to show the user what the campaign would look like and get their approval, then call create_content_campaign. Requires a product_id from search_products; write the campaign_message brief from what you know about the product.

Input parameters:

- `additional_guidelines` (string): Extra do's/don'ts for creators
- `campaign_goals` (array): Campaign goals, e.g. ["awareness", "signups"]
- `campaign_message` (string, required): The core brief: what you want the community to create (e.g. 'Share how you use <product> in your daily workflow').
- `preferred_platform` (string): Preferred platform, e.g. "x" or "farcaster"
- `product_id` (string, required): Product UUID from search_products
- `references` (string): Links or references to include in the campaign
- `target_audience` (string): Who the campaign should reach

### `create_content_campaign` (~239 tokens)

Launch a content campaign

Launch a content campaign: rally the ProductClank community to create content (posts, threads, videos) for a product. Spends 1000 credits. The platform's AI expands your brief into a full campaign and auto-activates it; community submissions and winner selection happen in the ProductClank web app. Requires a product_id from search_products. Preview with suggest_content_campaign and confirm the 1000-credit cost with the user before calling.

Input parameters:

- `additional_guidelines` (string): Extra do's/don'ts for creators
- `campaign_goals` (array): Campaign goals, e.g. ["awareness", "signups"]
- `campaign_message` (string, required): The core brief: what you want the community to create (e.g. 'Share how you use <product> in your daily workflow').
- `preferred_platform` (string): Preferred platform, e.g. "x" or "farcaster"
- `product_id` (string, required): Product UUID from search_products
- `references` (string): Links or references to include in the campaign
- `target_audience` (string): Who the campaign should reach

### `list_content_spaces` (~68 tokens)

List content spaces

List the ProductClank content spaces you can draft into — spaces the user owns, delegates for, or manages that have their content engine turned on. Returns { space_id, name }. Call this first to resolve the space_id for write_content_candidates, and confirm the target space with the user.

### `write_content_candidates` (~137 tokens)

Draft content candidates

Draft one or more content candidates into a ProductClank content space. FREE — no credits charged. Candidates land as UNREVIEWED DRAFTS in the builder's 'All Content' queue; a human reviews, edits, and schedules them — nothing is auto-published. Resolve space_id via list_content_spaces first. Up to 25 candidates per call. This drafts into the user's OWN content pipeline — it is NOT a community content campaign (use create_content_campaign for that).

Input parameters:

- `candidates` (array, required): 1–25 draft candidates to write.
- `space_id` (string, required): Target content space UUID from list_content_spaces.

## Diagnostics

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

## Score history

- 2026-08-03: 78
- 2026-08-02: 78
- 2026-08-01: 77
- 2026-07-31: 77
- 2026-07-30: 72
- 2026-07-29: 72
- 2026-07-28: 71
- 2026-07-27: 70
- 2026-07-26: 70

## Links

- Remote endpoint: https://mcp.productclank.com/mcp
- Repository: https://github.com/covariance-network/productclank-mcp-server
- Website: https://www.productclank.com/mcp
- Changelog RSS feed: https://verifymcp.io/servers/com-productclank-productclank/mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-productclank-productclank/mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/com-productclank-productclank/mcp
