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

at-explore-mcp

v0.12.3

Published

MCP server for AT Protocol exploration tools

Readme

AT Explore MCP

npm version License: MIT

Give your AI assistant the ability to explore the social web. This MCP server provides tools for searching users, browsing posts, checking verifications, and more across AT Protocol (Bluesky), ActivityPub (Mastodon, Pixelfed), and Nostr networks.

Quick Start

Add to Claude Desktop config and restart:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "at-explore": {
      "command": "npx",
      "args": ["-y", "at-explore-mcp"]
    }
  }
}

That's it. Ask Claude about any Bluesky, Mastodon, or Nostr user.

What Can You Do With It?

Once installed, try asking Claude things like:

  • "Look up @jay.bsky.team on Bluesky and tell me about them"
  • "Find people on Bluesky who work on AI"
  • "What are the recent posts from @atproto.com?"
  • "Is pfrazee.com a verified handle? How did they set it up?"
  • "Who has liked my latest post?" (with authentication)
  • "Check if @[email protected] is bridged to Bluesky"
  • "What collections does this user have in their AT Protocol repo?"
  • "Look up this Nostr npub and show me their profile"
  • "What has this Nostr user been posting lately?"

Installation Options

Option 1: npx (Recommended)

Zero installation. Add the config above and go.

Option 2: Global Install

npm install -g at-explore-mcp
{
  "mcpServers": {
    "at-explore": {
      "command": "at-explore-mcp"
    }
  }
}

Option 3: Claude Code CLI

For Claude Code, use the hosted HTTP endpoint:

claude mcp add --transport http at-explore https://mcp.atexplore.social/mcp

Note: The HTTP endpoint is read-only. For write capabilities (posting, etc.), use local installation.

Features

Bluesky / AT Protocol

| Capability | Tools | |------------|-------| | Search & Discovery | search_handles - Find users by name or handle | | User Profiles | get_user_profile, get_account_document, get_repository_summary | | Content Browsing | get_user_collection, browse_collection_records, get_record, get_record_by_uri, get_feed | | Engagement Data | get_all_link_sources, get_profile_backlinks, get_record_backlinks, get_specific_backlinks | | Verification | verify_handle, get_verification_status, check_verification, get_verifications, get_verifiers | | Stats & Media | get_at_stats, get_user_blobs, get_user_collections | | Lexicons | get_lexicon_schema, search_lexicons, validate_lexicon | | AI Preferences | get_ai_preferences - Read a user's AI consent preferences | | Links | get_at_explore_link, get_at_explore_link_by_uri | | Advanced | graphql_query - Execute custom GraphQL queries against the AT Explore API |

ActivityPub (Mastodon, Pixelfed, etc.)

| Capability | Tools | |------------|-------| | Profiles | get_activitypub_profile | | Posts | get_activitypub_posts, get_activitypub_post | | Stats | get_activitypub_stats | | Bridge Status | get_bridge_status, get_activitypub_bridge_status |

Nostr

| Capability | Tools | |------------|-------| | Profiles | get_nostr_profile - Look up a Nostr user by npub or identifier | | Posts | get_nostr_posts - Get recent posts from a Nostr user | | Events | get_nostr_event - Get a specific Nostr event by ID |

Authentication & Writing (Local only)

When running locally via STDIO, you can authenticate with your Bluesky account:

| Tool | Description | |------|-------------| | login | OAuth login via browser | | logout | Clear session | | whoami | Current user info | | check_auth | Verify authentication | | create_post | Post to Bluesky | | create_record | Create any AT Protocol record | | update_record | Update a record | | delete_record | Delete a record |

Authentication

To use write features, authenticate with your Bluesky account:

  1. Ask Claude to log you in (it will use the login tool)
  2. A browser opens for OAuth authorization
  3. Authorize the app
  4. You're now authenticated for write operations

Sessions are stored locally:

  • macOS/Linux: ~/.config/at-explore-mcp/
  • Windows: %APPDATA%\at-explore-mcp\

HTTP API

A read-only HTTP API is available at https://mcp.atexplore.social.

Data Source

Powered by AT Explore, which indexes AT Protocol data for fast queries.

License

MIT