Releases: upstash/context7
Releases · upstash/context7
ctx7@0.4.2
Patch Changes
- 6c71e4d: Handle malformed MCP config files gracefully during
ctx7 removeagent detection. Previously, an unparseable JSON config at any agent's well-known path (e.g. a hand-edited~/.claude.json) would crash the command with an unhandledSyntaxErrorbefore it could do anything. The detector now skips the offending file and logs a warning naming the path and parse error so the user can fix it, while detection continues for the remaining agents. - 4056850: Respect
CLAUDE_CONFIG_DIRenv var when resolving Claude Code's global config, rules, skills, and detection paths
@upstash/context7-mcp@2.2.5
Patch Changes
- 187287c: Accept hallucinated argument names on
tools/callrequests by rewriting them to the canonical names before validation.userQueryandquestionare mapped toqueryon either tool; onquery-docs,context7CompatibleLibraryID,libraryID, andlibraryNameare mapped tolibraryId. Some LLM clients produce these alternative names — likely echoing phrasing from each tool's description — and previously triggeredInvalid input: expected string, received undefinederrors.libraryNameis only rewritten onquery-docscalls because it is the canonical arg forresolve-library-id. Tool input schemas published viatools/listare unchanged: canonical names remain the documented required fields, the rewrite is purely a server-side compatibility shim that runs only ontools/calland only when the canonical key is absent. - 78b9826: Exit the stdio MCP server when the parent process closes its stdio. Previously, if the parent (e.g. Claude Code) was force-killed shortly after a tool call, an idle undici keep-alive socket to the Context7 API would keep libuv's event loop alive past stdin EOF, leaving an orphaned
nodeprocess that consumed memory until the kernel tore the socket down (which on Cloudflare-fronted endpoints can take hours). The server now listens forend/closeon stdin andSIGHUPand exits cleanly. Fixes #2542.
ctx7@0.4.1
Patch Changes
- 1aa3430: Remove research mode entirely from the MCP server and CLI. The
query-docsMCP tool no longer accepts or forwards aresearchModeparameter, and the CLI no longer exposes a--researchflag onctx7 docs.
@upstash/context7-mcp@2.2.4
Patch Changes
- d0e4a48: Create a fresh
McpServerper HTTP request. Sharing one across requests let any concurrenttransport.closeclear the sharedProtocol._transport, which brokesendNotificationfor in-flight long-running tool calls. - 1aa3430: Remove research mode entirely from the MCP server and CLI. The
query-docsMCP tool no longer accepts or forwards aresearchModeparameter, and the CLI no longer exposes a--researchflag onctx7 docs.
@upstash/context7-mcp@2.2.3
Patch Changes
- 772da3a: Stream MCP tool responses over SSE so HTTP headers flush before client
fetchtimeouts. SwitchingenableJsonResponsetofalsemakes the SDK return the HTTP response synchronously after request validation, so headers are sent in milliseconds instead of being buffered until the tool completes. This fixes clients that cap the underlyingfetchwaiting for headers (e.g., Claude Code's 60swrapFetchWithTimeout).
@upstash/context7-mcp@2.2.2
Patch Changes
- 8274bd0: Add missing tool annotations
- ff6c1be: Remove the
researchModeparameter from thequery-docstool's input schema. The underlying API still supports research mode, but several MCP clients hit per-request timeouts (60s defaults) on long-running research calls in ways that can't always be solved server-side. Hiding the parameter prevents agents from invoking it through MCP until the timeout story is reliable across clients.
@upstash/context7-mcp@2.2.1
Patch Changes
- 1b0c211: Add endpoint for OpenAI Apps SDK domain verification.
ctx7@0.4.0
Minor Changes
- 17b864f: Expose research mode through the MCP
researchModetool and the CLIdocs --researchflag for deep, agent-driven documentation answers.
Patch Changes
- 4feee15: Add CLI update notifications and a new
ctx7 upgradecommand. The CLI now checks for newer versions with cached state, shows a non-blocking notice before interactive commands, and provides safer upgrade guidance across npm, pnpm, bun, and ephemeral runner setups. - f056b14: Add
ctx7 removeas the cleanup counterpart toctx7 setup, with safer detection and removal behavior. The command now prompts only for agents with actual Context7 artifacts, preserves non-Context7 MCP configuration when removing entries, and includes stronger test coverage for JSON and TOML cleanup.
@upstash/context7-mcp@2.2.0
Minor Changes
- 17b864f: Expose research mode through the MCP
researchModetool and the CLIdocs --researchflag for deep, agent-driven documentation answers.
ctx7@0.3.13
Patch Changes
- 3f6e310: Fix skill installation path validation on Windows so valid files inside the target directory are not rejected due to backslash-separated resolved paths.