streamable-httpMITupdated 11d ago
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 skill), a Codex plugin, a Cursor plugin, and install recipes for VS Code and claude.ai.
What can you do with Context โ ctxt io?
ctxt.io for agents
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 skill), a Codex plugin, a Cursor plugin, and install recipes for VS Code and claude.ai.
- MCP endpoint:
https://ctxt.io/mcp(streamable HTTP, no auth, no account) - Tools:
create_context,read_context,delete_context - Free expiries: 5m โ 1d.
ttl=30dand Pro options (name, password) cost $1 one-time; the tool result says how payment completes โ apayment_urla human opens, plus any agent-payment capability the server currently advertises.
Claude Code (plugin โ recommended)
/plugin marketplace add ctxt-io/ctxt-agents
/plugin install ctxt@ctxt
You get the MCP server and a share 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). The skill also registers the /ctxt:share slash command.
MCP server only, no plugin:
claude mcp add --transport http ctxt https://ctxt.io/mcp
Codex
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
Cursor
One-click install (opens Cursor with the server pre-filled):
Cursor plugin (bundles the MCP server + the share skill, which Cursor
registers as /share; 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" }
}
}
VS Code
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" }
}
}
claude.ai / Claude Desktop
Customize โ Connectors โ Add custom connector โ https://ctxt.io/mcp (no auth).
Any other MCP client
Point it at https://ctxt.io/mcp: stateless streamable HTTP, plain JSON responses, no authentication.
Notes
- Links are bearer-accessible by default โ anyone holding the URL can read them; password-protected (Pro) links additionally require the password. Don't share secrets.
- The
delete_tokenreturned at creation is a deletion capability. Treat it as a secret and keep it out of shared content. - Releasing: bump
versionin all three plugin manifests together (Claude only updates installed plugins when the version changes) and tag the release; CI checks the manifests stay in sync. - Docs: https://ctxt.io/mcp/docs ยท Terms: https://ctxt.io/tos ยท Privacy: https://ctxt.io/privacy
- Security reports: see SECURITY.md.
License
Install
Add Context โ ctxt io to your client. Pick the one you use.
claude mcp add --transport http context-ctxt-io https://ctxt.io/mcpcodex mcp add context-ctxt-io --url https://ctxt.io/mcp{
"mcpServers": {
"context-ctxt-io": {
"url": "https://ctxt.io/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"context-ctxt-io": {
"type": "http",
"url": "https://ctxt.io/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"context-ctxt-io": {
"url": "https://ctxt.io/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"context-ctxt-io": {
"serverUrl": "https://ctxt.io/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance19/25
- Trust16/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 4 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | Aug 14, 2026 |