
Security News
US Government Forces Anthropic to Pull Claude Fable Days After Launch
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.
@copass/mcp
Advanced tools
Standalone MCP server for Copass — drop-in discover/interpret/search + Context Window tools for any MCP client (Claude Agent SDK, Claude Code, Claude Desktop, Cursor)
Standalone MCP server for Copass. Exposes retrieval + Context Window as MCP tools for any client — Claude Code, Claude Desktop, Cursor, Claude Agent SDK, or your own.
Install the Copass CLI and bootstrap your account:
npm install -g @copass/cli
copass login # email OTP
copass setup # creates a sandbox, writes .olane/refs.json
copass apikey create --name my-mcp # prints an olk_... key — shown once, save it
Two values feed the MCP server config:
| Output | Use as |
|---|---|
olk_... key printed by copass apikey create | COPASS_API_KEY |
sandbox_id in ./.olane/refs.json | COPASS_SANDBOX_ID |
Ingest some content so the tools have something to return:
copass ingest path/to/file.md
Drop this into your client's MCP config, pasting the two values from the previous step:
{
"mcpServers": {
"copass": {
"command": "npx",
"args": ["-y", "@copass/mcp"],
"env": {
"COPASS_API_KEY": "olk_your_api_key",
"COPASS_SANDBOX_ID": "sb_your_sandbox_id"
}
}
}
}
Config locations:
| Client | Config file |
|---|---|
| Claude Code | ~/.claude.json (per-user) or ./.mcp.json (per-project) |
| Claude Desktop | ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) |
| Cursor | ~/.cursor/mcp.json |
| Claude Agent SDK | Whatever your SDK app loads |
Restart the client after editing. If you see copass in the tool picker, you're live.
Ask Claude "what tools do you have from copass?" — it should list 28 tools across two surfaces: 8 retrieval / Context Window / writeback tools (discover, interpret, search, context_window_create, context_window_add_turn, context_window_attach, context_window_close, ingest) and the 20 management tools enumerated below.
Then try: "Use context_window_create and then discover anything about checkout retry behavior." If retrieval returns something, you're end-to-end.
Retrieval:
discover — ranked menu of relevant contextinterpret — brief pinned to picked itemssearch — full synthesized answerContext Window — persistent, window-aware memory across turns:
context_window_create — open a new window (returns data_source_id)context_window_add_turn — log a user / assistant / system turncontext_window_attach — resume an archived window by idcontext_window_close — close the active windowWriteback:
ingest — push durable content into the graphAll retrieval tools are automatically window-aware when a window has been created in the session — no id threading needed from the LLM. The server holds one "active" window and uses it implicitly; multi-window callers pass data_source_id explicitly.
The server also exposes the full Copass management surface — agents, sources, triggers, runs, integrations, API keys — so an MCP-speaking client can manage your sandbox by conversation. All 20 tools share the same COPASS_API_KEY and COPASS_SANDBOX_ID as the retrieval tools and are scoped to that sandbox.
list_sandboxes — your sandboxeslist_sources / get_source — data sources connected to the sandboxlist_agents / get_agent — agents you've createdlist_triggers — triggers attached to a specific agentlist_runs / get_run_trace — recent runs and tool-resolution traceslist_trigger_components / list_apps / list_connected_accounts — Pipedream catalog and OAuth accountslist_api_keys — API keys minted in the sandboxlist_agent_tools — exact callable tool names available to a given agentlist_sandbox_connections — sandbox grants (owner-only)create_agent — provision a new agent with prompt, model, and tool configupdate_agent_prompt / update_agent_tools / update_agent_tool_sources — update agent configurationadd_user_mcp_source — register a user-owned MCP sourcewire_integration_to_agent — attach a third-party integration to an agentDestructive operations (key revocation, sandbox-grant changes, raw key minting) stay on the CLI by policy. The full spec corpus that drives this surface lives in @copass/management — embed it directly if you're building a custom MCP server.
Role gating. Management tools are scoped to the
COPASS_SANDBOX_IDenvironment variable. Viewer-role users see all 20 tools in the catalog but write attempts return permission-denied errors at call time. The MCP server does not pre-filter by role — denial happens at the service layer to avoid an extra HTTP round-trip at startup.
@copass/mcp holds windows, clients, and sessions in memory across tool calls.| Variable | Required | Default |
|---|---|---|
COPASS_API_KEY | ✅ | — |
COPASS_SANDBOX_ID | ✅ | — |
COPASS_API_URL | — | https://ai.copass.id |
COPASS_PROJECT_ID | — | (none) |
COPASS_PRESET | — | auto |
COPASS_INGEST_DATA_SOURCE_ID | — | (none — required for ingest unless passed per call) |
COPASS_CONTEXT_WINDOW_ID | — | (none — if set, the server auto-attaches to this window on startup and makes it the active window) |
COPASS_CONTEXT_WINDOW_INITIAL_TURNS | — | (none — JSON array of {role, content} used to seed the window's turn buffer on startup so retrieval is window-aware from the first tool call) |
If a parent process (HTTP server, agent runtime, orchestrator) has already created a Context Window via @copass/core and is launching @copass/mcp as a subprocess, pass the window's data_source_id as COPASS_CONTEXT_WINDOW_ID so retrieval is window-aware from the first tool call — no need for the LLM to call context_window_create / context_window_attach itself.
Since the MCP subprocess is ephemeral (often one per turn), the Context Window's local turn buffer resets on each spawn. To keep retrieval window-aware across turns, the parent process should track prior turns and serialize them as JSON into COPASS_CONTEXT_WINDOW_INITIAL_TURNS before each spawn:
{
"mcpServers": {
"copass": {
"command": "npx",
"args": ["-y", "@copass/mcp"],
"env": {
"COPASS_API_KEY": "...",
"COPASS_SANDBOX_ID": "...",
"COPASS_CONTEXT_WINDOW_ID": "ds_xxx",
"COPASS_CONTEXT_WINDOW_INITIAL_TURNS": "[{\"role\":\"user\",\"content\":\"...\"},{\"role\":\"assistant\",\"content\":\"...\"}]"
}
}
}
}
This is exactly how the create-copass-agent scaffold wires subprocess-per-turn: the Hono server maintains a Map<threadId, ChatMessage[]> and re-serializes on every spawn.
Embedding in your own server? Use the building blocks directly:
import { buildServer, loadConfig } from '@copass/mcp';
import { CopassClient } from '@copass/core';
import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';
const config = loadConfig();
const client = new CopassClient({ auth: { type: 'bearer', token: config.api_key } });
const server = buildServer({ client, config });
await server.connect(new StdioServerTransport());
@copass/core — the client SDK powering this server@copass/ai-sdk, @copass/langchain, @copass/mastra, copass-pydantic-ai — direct-SDK adapters for non-MCP consumersMIT
FAQs
Standalone MCP server for Copass — drop-in discover/search/get_origin + Context Window tools for any MCP client (Claude Agent SDK, Claude Code, Claude Desktop, Cursor)
The npm package @copass/mcp receives a total of 85 weekly downloads. As such, @copass/mcp popularity was classified as not popular.
We found that @copass/mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.

Security News
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.