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

@isteam/twitter-mcp

v1.0.1

Published

MCP server for Twitter/X marketing — search tweets, post, reply, and engage via AI agents

Readme

@isteam/twitter-mcp

npm version License: MIT

MCP server for Twitter/X — search tweets, post, reply, and engage via AI agents.

Built by is.team — the AI-native project management platform.

Quick Start

Add to your MCP config (.mcp.json for Claude Code, or Claude Desktop settings):

{
  "mcpServers": {
    "twitter": {
      "command": "npx",
      "args": ["-y", "@isteam/twitter-mcp"],
      "env": {
        "TWITTER_API_KEY": "your-api-key",
        "TWITTER_API_SECRET": "your-api-secret",
        "TWITTER_ACCESS_TOKEN": "your-access-token",
        "TWITTER_ACCESS_TOKEN_SECRET": "your-access-token-secret"
      }
    }
  }
}

Tools (15)

Search & Discovery

| Tool | Description | |------|-------------| | search_tweets | Search tweets by keywords, hashtags, or phrases (max 100 results) | | get_mentions | Get recent mentions of the authenticated user | | get_user_tweets | Get a user's recent tweets by username |

Engagement

| Tool | Description | |------|-------------| | post_tweet | Post a new tweet (max 280 characters) | | reply_tweet | Reply to a tweet | | quote_tweet | Quote tweet with your commentary | | delete_tweet | Delete a tweet | | like_tweet | Like a tweet | | retweet | Retweet a tweet | | follow_user | Follow a user by username |

User & Profile

| Tool | Description | |------|-------------| | get_me | Get authenticated user info (followers, following, tweet count) | | get_tweet | Get a specific tweet with author info and metrics | | get_user | Look up a user by username | | update_profile | Update your profile (name, bio, url, location) |

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | TWITTER_API_KEY | Yes | Twitter API key (consumer key) | | TWITTER_API_SECRET | Yes | Twitter API secret (consumer secret) | | TWITTER_ACCESS_TOKEN | Yes | OAuth 1.0a access token | | TWITTER_ACCESS_TOKEN_SECRET | Yes | OAuth 1.0a access token secret |

Getting your credentials

  1. Go to the Twitter Developer Portal
  2. Create a project and app
  3. Set up OAuth 1.0a with read and write permissions
  4. Generate your access token and secret from the "Keys and tokens" tab
  5. Copy all four values into your MCP config

Rate Limits & Agent Safety

Twitter API v2 enforces per-endpoint rate limits in 15-minute windows:

| Endpoint | Limit | Notes | |----------|-------|-------| | POST /2/tweets (post, reply, quote) | 300 / 15 min | ~20/min | | GET /2/tweets/search/recent | 450 / 15 min | Requires Basic tier | | POST /2/users/:id/likes | 300 / 15 min | | | POST /2/users/:id/retweets | 300 / 15 min | | | POST /2/users/:id/following | 300 / 15 min | | | GET /2/users/:id/mentions | 450 / 15 min | |

Idempotency note: Twitter API does not deduplicate identical tweets — posting the same text twice creates two tweets. If your agent retries on timeout, it may create duplicates. Use get_user_tweets to verify before retrying a post.

Backoff: When rate-limited, the API returns 429 Too Many Requests with a x-rate-limit-reset header (Unix timestamp). Wait until that time before retrying.

Usage Examples

Monitor your brand:

"Search for tweets mentioning 'is.team' in the last 24 hours and show engagement metrics"

Engage with your audience:

"Check my recent mentions and reply to any questions with helpful answers"

Post an update:

"Tweet: Just shipped our new AI-powered project management feature! Check it out at is.team"

About is.team

is.team is an AI-native project management platform where AI agents and humans collaborate as real teammates. AI agents join boards, create tasks, chat, and get work done — just like any other team member.

Part of the is.team open-source MCP ecosystem:

License

MIT