npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

bink-mcp

v1.0.2

Published

MCP server for managing your Bink link-in-bio page

Readme

bink-mcp

MCP server for managing your Bink link-in-bio page via AI assistants.

Works with Claude Code, Claude Desktop, Cursor, and any MCP-compatible client.

Quick Start

1. Get your API Token

Go to binatomy.link/settings > Developer section > Create Token.

Your token will look like bink_abc123... — save it, it's shown only once.

2. Configure your MCP client

Claude Code (.claude/settings.json):

{
  "mcpServers": {
    "bink": {
      "command": "npx",
      "args": ["-y", "bink-mcp"],
      "env": {
        "BINK_API_TOKEN": "bink_your_token_here"
      }
    }
  }
}

Claude Desktop (claude_desktop_config.json):

{
  "mcpServers": {
    "bink": {
      "command": "npx",
      "args": ["-y", "bink-mcp"],
      "env": {
        "BINK_API_TOKEN": "bink_your_token_here"
      }
    }
  }
}

Cursor (MCP settings):

{
  "bink": {
    "command": "npx",
    "args": ["-y", "bink-mcp"],
    "env": {
      "BINK_API_TOKEN": "bink_your_token_here"
    }
  }
}

3. Start using it

Ask your AI assistant things like:

  • "Show me my Bink blocks"
  • "Add a new link to my portfolio"
  • "What are my page analytics?"
  • "List my inbox messages"
  • "Create a contact form"

Available Tools

Profile

| Tool | Description | |------|-------------| | get_profile | Get your user profile | | update_profile | Update name, email, inbox settings |

Blocks

| Tool | Description | |------|-------------| | list_blocks | List all blocks on your page | | create_block | Create a new block (LINK, HEADER, SOCIAL, FORM, BOOKING, etc.) | | update_block | Update block content or visibility | | delete_block | Remove a block | | reorder_blocks | Change block positions |

Page

| Tool | Description | |------|-------------| | update_page_settings | Update title, description, SEO metadata | | update_page_theme | Change page theme (colors, fonts, spacing) | | toggle_page_publish | Publish or unpublish your page |

Forms

| Tool | Description | |------|-------------| | list_forms | List all forms | | get_form | Get form details with fields | | create_form | Create a new form | | update_form | Update form settings | | get_form_responses | View form submissions |

Messages

| Tool | Description | |------|-------------| | list_messages | List inbox messages | | get_message | Read a message | | toggle_message_read | Mark read/unread | | delete_message | Delete a message |

Analytics

| Tool | Description | |------|-------------| | get_analytics | Page views, clicks, top blocks (30 days) |

Bookings

| Tool | Description | |------|-------------| | list_bookings | List your bookings | | update_booking_status | Confirm or cancel a booking |

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | BINK_API_TOKEN | Yes | Your Personal Access Token (starts with bink_) | | BINK_API_URL | No | API base URL (default: https://binatomy.link) |

Development

cd packages/mcp-server
npm install
npm run build

Test locally with MCP Inspector:

BINK_API_TOKEN=bink_xxx npx @modelcontextprotocol/inspector node build/index.js

License

MIT