Skip to main content
ClaudeWave
jiankn avatar
jiankn

savepinner-mcp

View on GitHub

MCP server for parsing, validating, classifying, and normalizing Pinterest URLs.

MCP ServersOfficial Registry0 stars0 forksJavaScriptMITUpdated today
Install in Claude Code / Claude Desktop
Method: NPX · savepinner-mcp
Claude Code CLI
claude mcp add savepinner-mcp -- npx -y savepinner-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "savepinner-mcp": {
      "command": "npx",
      "args": ["-y", "savepinner-mcp"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview

# SavePinner MCP

An MCP server for parsing, validating, classifying, and normalizing Pinterest URLs. It runs locally, makes no network requests, and does not download media.

## Tools

| Tool | Purpose |
| --- | --- |
| `parse_pinterest_url` | Return the URL kind, canonical URL, host, and type-specific identifiers. |
| `normalize_pinterest_url` | Convert a supported URL to canonical form and remove tracking parameters. |
| `is_pinterest_url` | Check whether a value is a supported Pinterest URL. |

Supported URL kinds include Pin, `pin.it`, profile, board, and Ideas URLs across Pinterest country domains.

## Run

Node.js 18 or newer is required.

```bash
npx -y savepinner-mcp
```

## Client configuration

Add the server to an MCP client that supports local `stdio` servers:

```json
{
  "mcpServers": {
    "savepinner": {
      "command": "npx",
      "args": ["-y", "savepinner-mcp"]
    }
  }
}
```

## Docker

Build and run the server as a local stdio container:

```bash
docker build -t savepinner-mcp .
docker run --rm -i savepinner-mcp
```

The runtime image executes as the unprivileged `node` user and does not require secrets, volumes, or network access.

## Example

Calling `parse_pinterest_url` with:

```text
https://de.pinterest.com/pin/987654321/?utm_source=share
```

returns:

```json
{
  "kind": "pin",
  "originalUrl": "https://de.pinterest.com/pin/987654321/?utm_source=share",
  "normalizedUrl": "https://www.pinterest.com/pin/987654321/",
  "host": "de.pinterest.com",
  "pinId": "987654321"
}
```

## Privacy and safety

- All processing is local.
- The server does not make network requests.
- The server does not download media.
- Hostnames are checked against an exact Pinterest domain allow list.
- Lookalike domains and non-HTTPS URLs are rejected.

The URL parser is provided by [`pinterest-url-normalizer`](https://www.npmjs.com/package/pinterest-url-normalizer).

This project is maintained by the team behind [SavePinner](https://savepinner.com/pinterest-downloader/), a browser tool for inspecting media exposed by public Pinterest Pin URLs.

Pinterest is a trademark of Pinterest, Inc. This project is independent and is not affiliated with or endorsed by Pinterest.

## Development

```bash
npm install
npm test
```

## License

MIT

What people ask about savepinner-mcp

What is jiankn/savepinner-mcp?

+

jiankn/savepinner-mcp is mcp servers for the Claude AI ecosystem. MCP server for parsing, validating, classifying, and normalizing Pinterest URLs. It has 0 GitHub stars and was last updated today.

How do I install savepinner-mcp?

+

You can install savepinner-mcp by cloning the repository (https://github.com/jiankn/savepinner-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is jiankn/savepinner-mcp safe to use?

+

jiankn/savepinner-mcp has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.

Who maintains jiankn/savepinner-mcp?

+

jiankn/savepinner-mcp is maintained by jiankn. The last recorded GitHub activity is from today, with 0 open issues.

Are there alternatives to savepinner-mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy savepinner-mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: jiankn/savepinner-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/jiankn-savepinner-mcp)](https://claudewave.com/repo/jiankn-savepinner-mcp)
<a href="https://claudewave.com/repo/jiankn-savepinner-mcp"><img src="https://claudewave.com/api/badge/jiankn-savepinner-mcp" alt="Featured on ClaudeWave: jiankn/savepinner-mcp" width="320" height="64" /></a>

More MCP Servers

savepinner-mcp alternatives