Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Resolve public X/Twitter profiles, posts, and media through CarryFeed.

README.md

CarryFeed Agent Tools

![skills.sh](https://skills.sh/christian-beep383/carryfeed-agent-tools) ![npm @carryfeed/sdk](https://www.npmjs.com/package/@carryfeed/sdk) ![npm @carryfeed/cli](https://www.npmjs.com/package/@carryfeed/cli) ![npm @carryfeed/mcp](https://www.npmjs.com/package/@carryfeed/mcp)

Public SDK, CLI, MCP server, OpenAPI notes, and agent skill wrappers for the hosted CarryFeed API.

This repository is intentionally a wrapper layer. It does not include CarryFeed's internal resolver implementation, Worker source, direct X/Twitter client code, tokens, cookies, or scraping internals.

CarryFeed gives agents one stable, source-preserving way to read public X/Twitter links. Instead of driving a browser, handling login prompts, or losing source context in screenshots, agents can call a hosted API and receive public profile, post, article, and media metadata with the original URL kept beside the result.

Useful links:

Packages

  • @carryfeed/sdk: JavaScript SDK for the hosted CarryFeed API.
  • @carryfeed/cli: CLI wrapper for agents and local scripts.
  • @carryfeed/mcp: stdio MCP server for MCP-capable agents.
  • skills/carryfeed-twitter-tools: Agent skill instructions for public X/Twitter link workflows.

Public Scope

CarryFeed works with public X and Twitter links only. It is designed for public profile, post, article, and media metadata workflows. It does not unlock private, protected, deleted, restricted, or login-only content.

Why Agents Use CarryFeed

  • One hosted API instead of brittle browser automation.
  • Public profile, post, article, image, video, and GIF-style media workflows in one place.
  • Source URL, author context, text, and media candidates stay together.
  • Clear public-only boundaries that help agents avoid overclaiming access.
  • CORS-friendly API, OpenAPI notes, CLI examples, and an agent skill.
  • Download helper for public pbs.twimg.com and video.twimg.com media URLs.

Quick Start

npm install @carryfeed/sdk
import { CarryFeedClient } from "@carryfeed/sdk";

const carryfeed = new CarryFeedClient();
const post = await carryfeed.resolve("https://x.com/user/status/123");
const media = await carryfeed.resolveMedia("https://x.com/user/status/123");
const profile = await carryfeed.getProfile("NASA");

CLI:

npx -y @carryfeed/cli resolve https://x.com/user/status/123 --compact
npx -y @carryfeed/cli media https://x.com/user/status/123 --compact
npx -y @carryfeed/cli profile NASA --statuses --count 5 --compact

MCP:

{
  "mcpServers": {
    "carryfeed": {
      "command": "npx",
      "args": ["-y", "@carryfeed/mcp"]
    }
  }
}

Agent Docs

See docs/agents.md for agent-facing usage, response expectations, and safety boundaries.

Agent Skill

The repository includes skills/carryfeed-twitter-tools, a wrapper-only skill that tells agents to use npx -y @carryfeed/cli for public X/Twitter source context. SDK and OpenAPI details are kept for developers, while the skill gives agents one default path.

After this repository is public, agents that support the Skills CLI can install it with:

npx skills add christian-beep383/carryfeed-agent-tools --skill carryfeed-twitter-tools

For ClawHub, publish from the skill folder after the npm packages and public repository are ready:

clawhub skill publish . --slug carryfeed-twitter-tools --name "CarryFeed Twitter Tools" --version 0.1.0 --changelog "Initial release"

Roadmap

Twitter/X search and hashtag search are planned as a later API surface. See docs/roadmap.md.

Publishing

The npm scope is @carryfeed.

Dry-run package contents:

npm run pack:sdk
npm run pack:cli
npm run pack:mcp

Publish when logged in as an npm user with write access to the carryfeed organization:

npm run publish:sdk
npm run publish:cli
npm run publish:mcp

Recommended first GitHub remote:

git remote add origin https://github.com/christian-beep383/carryfeed-agent-tools.git

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Files & Docs servers.