@upstash/context7-mcp 4.0.0 → 4.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -5
- package/dist/index.js +0 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
# Context7 MCP - Up-to-date Code Docs For Any Prompt
|
|
6
6
|
|
|
7
|
-
[](https://context7.com) [](https://context7.com) [](https://www.npmjs.com/package/@upstash/context7-mcp) [](./LICENSE)
|
|
8
8
|
|
|
9
9
|
[](./i18n/README.zh-TW.md) [](./i18n/README.zh-CN.md) [](./i18n/README.ja.md) [](./i18n/README.ko.md) [](./i18n/README.es.md) [](./i18n/README.fr.md) [-purple>)](./i18n/README.pt-BR.md) [](./i18n/README.it.md) [](./i18n/README.id-ID.md) [](./i18n/README.de.md) [](./i18n/README.ru.md) [](./i18n/README.uk.md) [](./i18n/README.tr.md) [](./i18n/README.ar.md) [](./i18n/README.vi.md)
|
|
10
10
|
|
|
@@ -1621,10 +1621,6 @@ Stay updated and join our community:
|
|
|
1621
1621
|
- [AICodeKing: "Context7 + Cline & RooCode: This MCP Server Makes CLINE 100X MORE EFFECTIVE!"](https://www.youtube.com/watch?v=qZfENAPMnyo)
|
|
1622
1622
|
- [Sean Kochel: "5 MCP Servers For Vibe Coding Glory (Just Plug-In & Go)"](https://www.youtube.com/watch?v=LqTQi8qexJM)
|
|
1623
1623
|
|
|
1624
|
-
## ⭐ Star History
|
|
1625
|
-
|
|
1626
|
-
[](https://www.star-history.com/#upstash/context7&Date)
|
|
1627
|
-
|
|
1628
1624
|
## 📄 License
|
|
1629
1625
|
|
|
1630
1626
|
MIT
|
package/dist/index.js
CHANGED
|
@@ -282,14 +282,7 @@ async function main() {
|
|
|
282
282
|
// no session store. The handler serves modern (2026-07-28) traffic natively
|
|
283
283
|
// and 2025-era traffic through its stateless legacy fallback, which answers
|
|
284
284
|
// GET/DELETE (session operations) with 405.
|
|
285
|
-
//
|
|
286
|
-
// responseMode "sse" keeps responses streaming: headers flush immediately
|
|
287
|
-
// after parsing the request rather than buffering until the tool returns.
|
|
288
|
-
// This is required for long-running tools because some MCP HTTP clients cap
|
|
289
|
-
// the underlying fetch at 60s waiting for headers, even though the per-tool
|
|
290
|
-
// timeout is much higher.
|
|
291
285
|
const mcpHandler = createMcpHandler(() => createMcpServer(), {
|
|
292
|
-
responseMode: "sse",
|
|
293
286
|
onerror: (error) => console.error("MCP handler error:", error),
|
|
294
287
|
});
|
|
295
288
|
// Without onerror, request-conversion / handler.fetch throws are answered
|