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

@purefeed/mcp-server

v0.1.0

Published

MCP server for Purefeed — AI-powered Twitter/X feed intelligence

Downloads

47

Readme

Purefeed MCP Server

A Model Context Protocol server that connects AI assistants to your Purefeed account — giving them access to your AI-curated Twitter/X feed, signals, semantic search, and post creation studio.

Features

  • Feed — Read your AI-ranked Twitter/X feed with signal relevance scores
  • Signals — Create, manage, and query AI signals that auto-detect topics in your feed
  • Search — Semantic (vector) search across all your saved tweets
  • Studio — Generate, humanize, publish, schedule, and queue posts via Typefully
  • Folders — Browse your bookmark folders and saved tweets

Installation

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "purefeed": {
      "command": "npx",
      "args": ["-y", "@purefeed/mcp-server"],
      "env": {
        "PUREFEED_API_KEY": "your-api-key"
      }
    }
  }
}

Claude Code

claude mcp add purefeed -- npx -y @purefeed/mcp-server \
  --env PUREFEED_API_KEY=your-api-key

Cursor

Add to your Cursor MCP settings:

{
  "mcpServers": {
    "purefeed": {
      "command": "npx",
      "args": ["-y", "@purefeed/mcp-server"],
      "env": {
        "PUREFEED_API_KEY": "your-api-key"
      }
    }
  }
}

Setup

  1. Go to purefeed.ai/profile and create a Public API Key
  2. Add the key as PUREFEED_API_KEY in your MCP client configuration (see above)

Tools

| Tool | Description | Key Parameters | |------|-------------|----------------| | get_me | Get your user profile and verify the API key | — | | get_feed | Retrieve your AI-ranked tweet feed | limit, search, signal_ids | | get_signal_insights | Get AI signal analysis for specific tweets | tweet_ids (comma-separated) | | list_folders | List your bookmark folders | — | | get_folder_tweets | Get tweets saved in a folder | folder_id, limit | | list_signals | List all your AI signal configurations | — | | create_signal | Create a new AI signal | name, description, tags, include_keywords, exclude_keywords | | get_signal | Get details of a specific signal | signal_id | | update_signal | Update signal name or description | signal_id, name, description | | delete_signal | Permanently delete a signal | signal_id | | get_signal_matches | Get tweets that triggered a signal | signal_id, limit | | list_styles | List available writing styles | — | | search_tweets | Semantic search across saved tweets | query, limit | | generate_post | Generate a post using AI and reference tweets | tweetIds, styleId, ideaPrompt | | humanize_post | Score a post for AI-likeness and rewrite if needed | posts | | publish_post | Publish a post to X/Twitter immediately | posts | | schedule_post | Schedule a post for a specific time | posts, scheduled_at | | save_draft | Save a post as a draft in Typefully | posts | | queue_post | Add a post to the next queue slot | posts |

Resources

The server exposes these MCP resources for ambient context:

| Resource | URI | Description | |----------|-----|-------------| | Signals | purefeed://signals | Your AI signal configurations with IDs | | Styles | purefeed://styles | Available writing styles with IDs | | Profile | purefeed://profile | Your Purefeed user profile | | Folders | purefeed://folders | Your bookmark folders with IDs |

Prompts

| Prompt | Description | |--------|-------------| | analyze_feed | Analyze your feed for key themes, notable tweets, and signal matches | | draft_post | Find interesting content and draft a post (optionally about a specific topic) | | signal_report | Get a summary of what each AI signal detected recently |

Configuration

| Environment Variable | Required | Default | Description | |---------------------|----------|---------|-------------| | PUREFEED_API_KEY | Yes | — | Your Purefeed API key from purefeed.ai/profile | | PUREFEED_API_URL | No | https://purefeed.ai | API base URL (for self-hosted or development) |

Debugging

Test the server locally with the MCP Inspector:

npx @modelcontextprotocol/inspector npx -y @purefeed/mcp-server

Set the PUREFEED_API_KEY environment variable in the Inspector UI, then test individual tools.

License

MIT