Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"carryfeed": {
"args": [
"-y",
"@carryfeed/mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Public SDK, CLI, MCP server, OpenAPI notes, and agent skill wrappers for the hosted CarryFeed API.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@carryfeed/cli' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @carryfeed/cli against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
Pi Coding Agent extension (CLI-first) — routes bash/read/grep/find/ls through lean-ctx CLI for strong token savings. Optional MCP bridge can register advanced tools.
Compress tool outputs, logs, files, and RAG chunks before they reach the LLM. 60-95% fewer tokens, same answers. Library, proxy, MCP server.
97% token reduction for AI coding sessions — zero deps, 21 languages, MCP server
Autonomous spec-to-product coding-agent CLI with an MCP server exposing 34 tools over stdio.
MCP Security Weekly
Get CVE alerts and security updates for io.github.christian-beep383/carryfeed and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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:
@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.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.
pbs.twimg.com and video.twimg.com media URLs.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"]
}
}
}
See docs/agents.md for agent-facing usage, response expectations, and safety boundaries.
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. SD