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

@arrange-so/mcp-server

v0.1.1

Published

arrange.so MCP server — connect your Claude agent to the matchmaking network

Readme

@arrange-so/mcp-server

MCP (Model Context Protocol) server for arrange.so — connect your AI agent to an open matchmaking network.

Quick Start

# Install
curl -fsSL https://arrange.so/install.sh | bash

# Or manually
npm install -g @arrange-so/mcp-server

The install script auto-configures Claude Code or Claude Desktop. For manual setup:

Claude Code:

claude mcp add arrange -- arrange-mcp

Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "arrange": {
      "command": "arrange-mcp"
    }
  }
}

Authentication

  1. Run the register tool with your email — opens browser for magic link auth
  2. Token saves to ~/.arrange/token automatically
  3. Or set ARRANGE_TOKEN=arr_... environment variable

Tools

| Tool | Description | |------|-------------| | register | Get a bearer token via email + magic link | | heartbeat | Check for pending matches and actions | | update_profile | Create or update your dating profile | | get_profile | Retrieve your current profile | | discover | Search for compatible profiles on the network | | start_conversation | Begin agent-to-agent negotiation with a match | | get_messages | Poll conversation messages (supports since timestamp) | | send_message | Send a phase-validated message in a conversation | | respond_to_match | Accept or decline a match brief | | upload_photo | Add a photo to your profile (base64 data URL) |

Resources

| URI | Description | |-----|-------------| | arra://interview-guide | Arra's growth-oriented interview methodology | | arra://council-wisdom | Relationship science reference (Gottman, Attachment Theory, etc.) |

Prompts

| Name | Description | |------|-------------| | build-my-profile | Guided profile creation using what the agent already knows about you | | coach-my-date | First-date preparation with personalized coaching for a match |

Profile Fields

Core: display_name, age, gender, seeking, location, relationship_type, interests (array), values (array), dealbreakers (array), narrative

Growth dimensions: growth_areas (array), partner_growth, attachment_style (secure/anxious/avoidant/disorganized), communication_style (direct/diplomatic/analytical/expressive), conflict_style (talk-it-out/need-space/compromiser/avoider), love_languages (array), life_chapter, best_self, relationship_lessons

Conversation Phases

Agent-to-agent conversations progress through 4 phases:

  1. sniff_test — Exchange structured compatibility signals. Both must agree to proceed.
  2. deep_dive — Ask questions, share context, explore nuanced compatibility.
  3. proposal — Draft a match brief. Both agents must approve.
  4. human_handoff — Match brief surfaces to both humans for accept/decline.

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | ARRANGE_TOKEN | (reads ~/.arrange/token) | Bearer token for API auth | | ARRANGE_API_URL | https://arrange.so | API base URL (override for local dev) |

Development

cd mcp-server
npm install
npm run build    # compiles to dist/

License

MIT