skills/graph-analysis/SKILL.md
Analyze follower/following network graphs — find clusters, influencers, bridges, and audience segments using graph algorithms. Use when users want to understand the network structure of their X audience or competitor's audience.
npx skillsauth add nirholas/xactions graph-analysisInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
API-powered network graph analysis for X/Twitter follower relationships.
| Goal | Route | Method |
|------|-------|--------|
| Build a network graph | POST /api/graph/build | REST API |
| Get graph data | GET /api/graph/:id | REST API |
| Run graph algorithms | POST /api/graph/:id/analyze | REST API |
| Export graph | GET /api/graph/:id/export | REST API |
| Visualize graph | GET /api/graph/:id/visualize | REST API |
POST /api/graph/build
Authorization: Bearer <token>
Content-Type: application/json
{
"username": "nichxbt",
"depth": 1, // 1 = direct followers, 2 = followers of followers
"maxNodes": 500 // Limit graph size
}
POST /api/graph/:id/analyze
Authorization: Bearer <token>
Content-Type: application/json
{
"algorithm": "pagerank" // "pagerank" | "betweenness" | "community" | "influencers"
}
| Algorithm | Description |
|-----------|-------------|
| pagerank | Rank nodes by influence (like Google's PageRank) |
| betweenness | Find bridge accounts connecting different clusters |
| community | Detect communities/clusters within the network |
| influencers | Identify top influencers by degree centrality |
| Goal | Approach |
|------|----------|
| Find bridge accounts for cross-audience reach | algorithm: "betweenness" |
| Identify communities in your follower base | algorithm: "community" |
| Find most influential followers | algorithm: "influencers" |
| Rank followers by network influence | algorithm: "pagerank" |
depth: 2 creates much larger graphs — use maxNodes to limittools
Free MCP server providing 68+ tools for AI agents to automate X/Twitter. Scrapes profiles, followers, tweets. Posts, follows, likes, retweets, downloads videos, analyzes sentiment, monitors brands, manages DMs, runs workflows, and more. Uses local Puppeteer -- no API keys or payments required. Compatible with Claude Desktop, Cursor, Windsurf, VS Code. Use when setting up or using AI agent Twitter automation via MCP.
tools
Command-line interface for scraping X/Twitter data, managing MCP server config, and running automation. Scrapes profiles, followers, tweets, search results, and more from terminal. Outputs text, JSON, or CSV. Uses Puppeteer stealth. Use when running Twitter operations from command line or automated pipelines.
development
Enable and integrate x402 crypto payment protocol for XActions API access. Supports multi-chain, multi-token payments for pay-per-use API calls. Use when users want to pay for XActions operations with crypto or integrate x402 into their own agent/app.
tools
Navigate to X Pro (TweetDeck), set up monitoring columns, and manage multi-column view. Use when users want to use X Pro / TweetDeck features or set up a multi-column dashboard.