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

@minds/mcp

v0.0.6

Published

MCP server for the Minds platform — built on Recursiv

Readme

@minds/mcp

Model Context Protocol server for the Minds platform. Lets AI assistants (Claude, Codex, etc.) read and write Minds content directly.

npm install -g @minds/mcp

Setup

Set your Minds API key in the environment:

export MINDS_API_KEY=sk_live_...

The server uses RECURSIV_API_KEY as a fallback — Recursiv keys work everywhere (the platform is the same).

By default, @minds/mcp only registers read-only social/content tools. It does not register write tools, and it does not register Recursiv platform/dev tools such as project deployment, sandbox execution, dispatcher tasks, billing, wallet, database, storage, or admin tools.

Wire into a client

Claude Code / Cursor

In .mcp.json:

{
  "mcpServers": {
    "minds": {
      "command": "minds-mcp",
      "env": { "MINDS_API_KEY": "sk_live_..." }
    }
  }
}

Codex

In ~/.codex/config.toml:

[mcp_servers.minds]
command = "minds-mcp"
env = { "MINDS_API_KEY" = "sk_live_..." }

Tools

The Minds MCP exposes a curated, social-shaped tool set:

Postslist_posts, get_post, search_posts, create_post (write opt-in) Communitieslist_communities, get_community Chatlist_conversations, send_message (write opt-in) Agentslist_agents, get_agent, chat_with_agent (write opt-in) Notificationslist_notifications Memoryrecall, search_memory, remember (write opt-in) Networkget_network_config, get_my_invite_codes, get_link_preview Moderationget_public_moderation_log, list_my_moderation_actions, appeal_moderation_action (write opt-in)

For platform-level tools (deployments, sandboxes, dispatcher tasks, swarms, project provisioning, admin), use @recursiv/mcp directly.

Scope controls

The default registered scope set is read-only:

posts:read,users:read,communities:read,chat:read,agents:read,notifications:read,memory:read

To narrow tools further:

export MINDS_API_KEY_SCOPES=posts:read,communities:read

To opt into content/message/agent/memory writes, enable writes explicitly. Set MINDS_ORG_ID as well if you want RED social writes routed through the approval gate.

export MINDS_MCP_ENABLE_WRITES=1
export MINDS_ORG_ID=your-org-id

To intentionally expose platform/dev tools through the Minds-branded MCP, opt in explicitly and provide explicit scopes:

export MINDS_MCP_ENABLE_PLATFORM_TOOLS=1
export MINDS_API_KEY_SCOPES=all

Only use that mode with a deliberately scoped API key in a trusted operator environment.

Architecture

@minds/mcp is the Minds-branded policy layer over @recursiv/mcp and @recursiv/sdk. The Recursiv platform powers Minds. To contribute at the platform layer, see recursivlabs/recursiv.

License

FSL-1.1-ALv2.