KS
Killer-Skills

bird — how to use bird how to use bird, bird install, bird setup guide, bird alternative, bird vs twitter cli, what is bird, graphql twitter api, cookie auth twitter, bird authentication, twitter cli tools

v1.0.0
GitHub

About this Skill

Perfect for Social Media Analysis Agents needing efficient Twitter interactions via GraphQL and cookie auth. bird is a fast X/Twitter command-line interface using GraphQL and cookie-based authentication.

Features

Uses GraphQL for efficient data querying
Supports cookie-based authentication for secure interactions
Allows passing cookies directly with --auth-token or --ct0
Enables browser cookie usage with --cookie-source
Supports one-shot execution with bunx @steipete/bird
Provides a check command to verify active authentication source

# Core Topics

ncolex ncolex
[0]
[0]
Updated: 3/6/2026

Quality Score

Top 5%
60
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
Cursor IDE Windsurf IDE VS Code IDE
> npx killer-skills add ncolex/oc33ren/bird

Agent Capability Analysis

The bird MCP Server by ncolex is an open-source Categories.community integration for Claude and other AI agents, enabling seamless task automation and capability expansion. Optimized for how to use bird, bird install, bird setup guide.

Ideal Agent Persona

Perfect for Social Media Analysis Agents needing efficient Twitter interactions via GraphQL and cookie auth.

Core Value

Empowers agents to leverage fast X/Twitter CLI capabilities, utilizing GraphQL for optimized data retrieval and cookie-based authentication for secure interactions, supporting both direct cookie passing and browser cookie sources.

Capabilities Granted for bird MCP Server

Automating Twitter data scraping using GraphQL queries
Authenticating with Twitter via cookie-based auth for secure API interactions
Debugging Twitter API issues with the `bird check` command

! Prerequisites & Limits

  • Requires cookie-based auth or auth token
  • Limited to Twitter API interactions
Project
SKILL.md
4.8 KB
.cursorrules
1.2 KB
package.json
240 B
Ready
UTF-8

# Tags

[No tags]
SKILL.md
Readonly

bird 🐦

Fast X/Twitter CLI using GraphQL + cookie auth.

Install

bash
1# npm/pnpm/bun 2npm install -g @steipete/bird 3 4# Homebrew (macOS, prebuilt binary) 5brew install steipete/tap/bird 6 7# One-shot (no install) 8bunx @steipete/bird whoami

Authentication

bird uses cookie-based auth.

Use --auth-token / --ct0 to pass cookies directly, or --cookie-source for browser cookies.

Run bird check to see which source is active. For Arc/Brave, use --chrome-profile-dir <path>.

Commands

Account & Auth

bash
1bird whoami # Show logged-in account 2bird check # Show credential sources 3bird query-ids --fresh # Refresh GraphQL query ID cache

Reading Tweets

bash
1bird read <url-or-id> # Read a single tweet 2bird <url-or-id> # Shorthand for read 3bird thread <url-or-id> # Full conversation thread 4bird replies <url-or-id> # List replies to a tweet

Timelines

bash
1bird home # Home timeline (For You) 2bird home --following # Following timeline 3bird user-tweets @handle -n 20 # User's profile timeline 4bird mentions # Tweets mentioning you 5bird mentions --user @handle # Mentions of another user

Search

bash
1bird search "query" -n 10 2bird search "from:steipete" --all --max-pages 3

News & Trending

bash
1bird news -n 10 # AI-curated from Explore tabs 2bird news --ai-only # Filter to AI-curated only 3bird news --sports # Sports tab 4bird news --with-tweets # Include related tweets 5bird trending # Alias for news

Lists

bash
1bird lists # Your lists 2bird lists --member-of # Lists you're a member of 3bird list-timeline <id> -n 20 # Tweets from a list

Bookmarks & Likes

bash
1bird bookmarks -n 10 2bird bookmarks --folder-id <id> # Specific folder 3bird bookmarks --include-parent # Include parent tweet 4bird bookmarks --author-chain # Author's self-reply chain 5bird bookmarks --full-chain-only # Full reply chain 6bird unbookmark <url-or-id> 7bird likes -n 10

Social Graph

bash
1bird following -n 20 # Users you follow 2bird followers -n 20 # Users following you 3bird following --user <id> # Another user's following 4bird about @handle # Account origin/location info

Engagement Actions

bash
1bird follow @handle # Follow a user 2bird unfollow @handle # Unfollow a user

Posting

bash
1bird tweet "hello world" 2bird reply <url-or-id> "nice thread!" 3bird tweet "check this out" --media image.png --alt "description"

⚠️ Posting risks: Posting is more likely to be rate limited; if blocked, use the browser tool instead.

Media Uploads

bash
1bird tweet "hi" --media img.png --alt "description" 2bird tweet "pics" --media a.jpg --media b.jpg # Up to 4 images 3bird tweet "video" --media clip.mp4 # Or 1 video

Pagination

Commands supporting pagination: replies, thread, search, bookmarks, likes, list-timeline, following, followers, user-tweets

bash
1bird bookmarks --all # Fetch all pages 2bird bookmarks --max-pages 3 # Limit pages 3bird bookmarks --cursor <cursor> # Resume from cursor 4bird replies <id> --all --delay 1000 # Delay between pages (ms)

Output Options

bash
1--json # JSON output 2--json-full # JSON with raw API response 3--plain # No emoji, no color (script-friendly) 4--no-emoji # Disable emoji 5--no-color # Disable ANSI colors (or set NO_COLOR=1) 6--quote-depth n # Max quoted tweet depth in JSON (default: 1)

Global Options

bash
1--auth-token <token> # Set auth_token cookie 2--ct0 <token> # Set ct0 cookie 3--cookie-source <source> # Cookie source for browser cookies (repeatable) 4--chrome-profile <name> # Chrome profile name 5--chrome-profile-dir <path> # Chrome/Chromium profile dir or cookie DB path 6--firefox-profile <name> # Firefox profile 7--timeout <ms> # Request timeout 8--cookie-timeout <ms> # Cookie extraction timeout

Config File

~/.config/bird/config.json5 (global) or ./.birdrc.json5 (project):

json5
1{ 2 cookieSource: ["chrome"], 3 chromeProfileDir: "/path/to/Arc/Profile", 4 timeoutMs: 20000, 5 quoteDepth: 1, 6}

Environment variables: BIRD_TIMEOUT_MS, BIRD_COOKIE_TIMEOUT_MS, BIRD_QUOTE_DEPTH

Troubleshooting

Query IDs stale (404 errors)

bash
1bird query-ids --fresh

Cookie extraction fails

  • Check browser is logged into X
  • Try different --cookie-source
  • For Arc/Brave: use --chrome-profile-dir

TL;DR: Read/search/engage with CLI. Post carefully or use browser. 🐦

Related Skills

Looking for an alternative to bird or building a Categories.community AI Agent? Explore these related open-source MCP Servers.

View All

widget-generator

Logo of f
f

widget-generator is an open-source AI agent skill for creating widget plugins that are injected into prompt feeds on prompts.chat. It supports two rendering modes: standard prompt widgets using default PromptCard styling and custom render widgets built as full React components.

149.6k
0
Design

chat-sdk

Logo of lobehub
lobehub

chat-sdk is a unified TypeScript SDK for building chat bots across multiple platforms, providing a single interface for deploying bot logic.

73.0k
0
Communication

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
Communication

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
Communication