Share text, markdown, code, or HTML as auto-expiring links
MCPpedia last refreshed this data
io.ctxt/mcp is an MCP server that share text, markdown, code, or HTML as auto-expiring links. Its tool list has not been published yet over http, requires no API key, and scores 37/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"ctxt": {
"url": "https://ctxt.io/mcp"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Share whatever your agent produces as auto-expiring links. This repo packages the ctxt.io MCP server for agent runtimes: a Claude Code plugin (MCP + /share command + skill), a Codex plugin, a Cursor plugin, and install recipes for VS Code and claude.ai.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
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 writing
MCP server for document format conversion using pandoc.
This is an MCP server that allows you to directly download transcripts of YouTube videos.
Scrape, crawl, and map websites to Markdown or JSON via local CLI.
Any URL to clean, LLM-ready Markdown for RAG. Strips ads, nav, and boilerplate.
MCP Security Weekly
Get CVE alerts and security updates for io.ctxt/mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Share whatever your agent produces as auto-expiring links. This repo packages the ctxt.io MCP server for agent runtimes: a Claude Code plugin (MCP + /share command + skill), a Codex plugin, a Cursor plugin, and install recipes for VS Code and claude.ai.
https://ctxt.io/mcp (streamable HTTP, no auth, no account)create_context, read_context, delete_contextttl=30d and Pro options (name, password) cost $1 one-time; the tool result says how payment completes — a payment_url a human opens, plus any agent-payment capability the server currently advertises./plugin marketplace add ctxt-io/ctxt-agents
/plugin install ctxt@ctxt
You get the MCP server, a /share command, and a skill that teaches Claude when to share and how to produce good-looking HTML output (self-contained HTML + inline SVG — scripts are stripped server-side, so static only).
MCP server only, no plugin:
claude mcp add --transport http ctxt https://ctxt.io/mcp
Codex plugin (bundles the MCP server + the share skill; lives in codex/ctxt/ with a .codex-plugin/plugin.json manifest):
codex plugin marketplace add ctxt-io/ctxt-agents
codex plugin add ctxt@ctxt
MCP server only — add to ~/.codex/config.toml:
[mcp_servers.ctxt]
url = "https://ctxt.io/mcp"
Skill only — Codex loads skills from ~/.agents/skills (open Agent Skills format):
mkdir -p ~/.agents/skills
cp -r codex/ctxt/skills/share ~/.agents/skills/ctxt-share
One-click install (opens Cursor with the server pre-filled):
Cursor plugin (bundles the MCP server + the /share command + the share
skill; lives in cursor/ctxt/ with a .cursor-plugin/plugin.json
manifest, and the repo root carries a .cursor-plugin/marketplace.json
so the whole repo can be added as a marketplace):
Cursor → Settings → Tools & MCP → add marketplace → ctxt-io/ctxt-agents
MCP server only, by hand — add to .cursor/mcp.json (project) or
~/.cursor/mcp.json (global):
{
"mcpServers": {
"ctxt": { "url": "https://ctxt.io/mcp" }
}
}
Add to .vscode/mcp.json — note VS Code uses a top-level servers map, not mcpServers:
{
"servers": {
"ctxt": { "type": "http", "url": "https://ctxt.io/mcp" }
}
}
Customize → Connectors → Add custom connector → https://ctxt.io/mcp (no auth).
Point it at https://ctxt.io/mcp: stateless streamable HTTP, plain JSON responses, no authentication.
delete_token returned at creation is a deletion capability. Treat it as a secret and keep it out of shared content.version in both plugin manifests together (Claude only updates installed plugins when the version changes) and tag the release; CI checks the manifests stay in sync.