CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

CarryFeed

christian-beep383/carryfeed-agent-tools
STDIOregistry active
Summary

Connects Claude to public X/Twitter content through the hosted CarryFeed API. Exposes tools to resolve profiles, posts, and media without browser automation or login prompts. You get structured metadata for public tweets, images, videos, and GIFs with source URLs preserved alongside the content. Useful when you need to pull tweet text, author context, or media candidates into a workflow without spinning up Puppeteer or losing attribution. Wraps the same endpoints available through the CarryFeed SDK and CLI. Public content only, no access to protected or deleted posts.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

CarryFeed Agent Tools

skills.sh npm @carryfeed/sdk npm @carryfeed/cli npm @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:

  • Website: carryfeed.com
  • API health: api.carryfeed.com/health
  • Agent discovery: carryfeed.com/llms.txt
  • OpenAPI: carryfeed.com/openapi.json
  • Video downloader: carryfeed.com/twitter-video-downloader
  • Image downloader: carryfeed.com/twitter-image-downloader
  • GIF downloader: carryfeed.com/twitter-gif-downloader
  • Viewer guide: carryfeed.com/how-to-view-twitter-without-account

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
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
AI & LLM ToolsMedia & Entertainment
Registryactive
Package@carryfeed/mcp
TransportSTDIO
UpdatedMay 16, 2026
View on GitHub

Related AI & LLM Tools MCP Servers

View all →
SkillFM LLM Cost Optimizer

io.github.ericm1018/skillfm-llm-cost-optimizer-openai-anthropic-usage

LLM cost optimizer for OpenAI, Anthropic, token usage, BYOK, and SkillFM Beacon audits.
Llm Orchestration Agent

io.github.mikerawsonnz/llm-orchestration-agent

Run a prompt through a LangChain (system + human) chain over Gemini on Vertex AI; optional LangSmith
Authenticated Llm Agent

io.github.mikerawsonnz/authenticated-llm-agent

JWT-gated LLM gateway: authenticate (bcrypt/JWT), then run a LangChain-on-Vertex Gemini completion.
Copilot Memory MCP

labforgedev/copilot-memory-mcp

Persistent semantic memory for AI agents using local ChromaDB vector search. No cloud required.
1
Agent Prompt Injection Firewall Mcp

csoai-org/agent-prompt-injection-firewall-mcp

The WAF for agents. Pattern-based + heuristic firewall scans prompts, RAG documents, tool argume...
Authenticated Multi Llm Agent

io.github.mikerawsonnz/authenticated-multi-llm-agent

Google-OAuth-gated LLM gateway: verify a Google ID token, then run a Gemini (Vertex AI) completion f