@upstash/context7-mcp 2.2.5 → 3.0.0

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/dist/index.js CHANGED
@@ -7,9 +7,13 @@ import { formatSearchResults, extractClientInfoFromUserAgent } from "./lib/utils
7
7
  import { isJWT, validateJWT } from "./lib/jwt.js";
8
8
  import express from "express";
9
9
  import { StreamableHTTPServerTransport } from "@modelcontextprotocol/sdk/server/streamableHttp.js";
10
+ import { isInitializeRequest } from "@modelcontextprotocol/sdk/types.js";
10
11
  import { Command } from "commander";
11
12
  import { AsyncLocalStorage } from "async_hooks";
13
+ import { randomUUID } from "node:crypto";
14
+ import { createSessionStore } from "./lib/sessionStore.js";
12
15
  import { SERVER_VERSION, RESOURCE_URL, AUTH_SERVER_URL, OPENAI_APPS_CHALLENGE_TOKEN, } from "./lib/constants.js";
16
+ import { appendAuthPrompt } from "./lib/auth/auth-prompt.js";
13
17
  /** Default HTTP server port */
14
18
  const DEFAULT_PORT = 3000;
15
19
  // Parse CLI arguments using commander
@@ -49,6 +53,8 @@ const requestContext = new AsyncLocalStorage();
49
53
  // Global state for stdio mode only
50
54
  let stdioApiKey;
51
55
  let stdioClientInfo;
56
+ // One session ID per stdio process.
57
+ let stdioSessionId;
52
58
  /**
53
59
  * Get the effective client context
54
60
  */
@@ -63,6 +69,7 @@ function getClientContext() {
63
69
  apiKey: stdioApiKey,
64
70
  clientInfo: stdioClientInfo,
65
71
  transport: "stdio",
72
+ sessionId: stdioSessionId,
66
73
  };
67
74
  }
68
75
  /**
@@ -156,28 +163,26 @@ IMPORTANT: Do not call this tool more than 3 times per question. If you cannot f
156
163
  idempotentHint: true,
157
164
  },
158
165
  }, async ({ query, libraryName }) => {
159
- const searchResponse = await searchLibraries(query, libraryName, getClientContext());
166
+ const ctx = getClientContext();
167
+ const searchResponse = await searchLibraries(query, libraryName, ctx);
160
168
  if (!searchResponse.results || searchResponse.results.length === 0) {
169
+ const text = searchResponse.error ?? "No libraries found matching the provided name.";
161
170
  return {
162
171
  content: [
163
172
  {
164
173
  type: "text",
165
- text: searchResponse.error
166
- ? searchResponse.error
167
- : "No libraries found matching the provided name.",
174
+ text: appendAuthPrompt(text, ctx),
168
175
  },
169
176
  ],
170
177
  };
171
178
  }
172
179
  const resultsText = formatSearchResults(searchResponse);
173
- const responseText = `Available Libraries:
174
-
175
- ${resultsText}`;
180
+ const responseText = `Available Libraries:\n\n${resultsText}`;
176
181
  return {
177
182
  content: [
178
183
  {
179
184
  type: "text",
180
- text: responseText,
185
+ text: appendAuthPrompt(responseText, ctx),
181
186
  },
182
187
  ],
183
188
  };
@@ -204,12 +209,13 @@ Do not call this tool more than 3 times per question.`,
204
209
  idempotentHint: true,
205
210
  },
206
211
  }, async ({ query, libraryId }) => {
207
- const response = await fetchLibraryContext({ query, libraryId }, getClientContext());
212
+ const ctx = getClientContext();
213
+ const response = await fetchLibraryContext({ query, libraryId }, ctx);
208
214
  return {
209
215
  content: [
210
216
  {
211
217
  type: "text",
212
- text: response.data,
218
+ text: appendAuthPrompt(response.data, ctx),
213
219
  },
214
220
  ],
215
221
  };
@@ -297,10 +303,11 @@ async function main() {
297
303
  extractHeaderValue(req.headers["context7_api_key"]) ||
298
304
  extractHeaderValue(req.headers["x_api_key"]));
299
305
  };
306
+ const sessionStore = createSessionStore();
300
307
  const handleMcpRequest = async (req, res, requireAuth) => {
301
- // Reject GET requests — this server is stateless and does not send server-initiated
302
- // notifications, so SSE streams serve no purpose and cause mass NGINX timeouts.
303
- // Returning 405 is spec-compliant per MCP StreamableHTTP (2025-03-26).
308
+ // Reject GET requests — sessions are tracked in Redis, but this server does not send
309
+ // server-initiated notifications, so SSE streams serve no purpose and cause mass NGINX
310
+ // timeouts. Returning 405 is spec-compliant per MCP StreamableHTTP (2025-03-26).
304
311
  if (req.method === "GET") {
305
312
  return res.status(405).json({
306
313
  jsonrpc: "2.0",
@@ -345,6 +352,51 @@ async function main() {
345
352
  clientInfo: extractClientInfoFromUserAgent(req.headers["user-agent"]),
346
353
  transport: "http",
347
354
  };
355
+ const sessionId = extractHeaderValue(req.headers["mcp-session-id"]);
356
+ if (req.method === "DELETE") {
357
+ if (!sessionId) {
358
+ return res.status(400).json({
359
+ jsonrpc: "2.0",
360
+ error: { code: -32000, message: "Bad Request: No valid session ID provided" },
361
+ id: null,
362
+ });
363
+ }
364
+ await sessionStore.delete(sessionId);
365
+ return res.status(200).end();
366
+ }
367
+ let effectiveSessionId;
368
+ if (!sessionId && req.method === "POST" && isInitializeRequest(req.body)) {
369
+ effectiveSessionId = randomUUID();
370
+ await sessionStore.create(effectiveSessionId);
371
+ res.setHeader("mcp-session-id", effectiveSessionId);
372
+ }
373
+ else if (sessionId && req.method === "POST" && !isInitializeRequest(req.body)) {
374
+ const sessionExists = await sessionStore.refresh(sessionId);
375
+ if (!sessionExists) {
376
+ // Per MCP Streamable HTTP spec: 404 signals to the client that the session
377
+ // has been terminated/expired, so it should re-initialize with a fresh InitializeRequest.
378
+ return res.status(404).json({
379
+ jsonrpc: "2.0",
380
+ error: {
381
+ code: -32000,
382
+ message: "Session not found or expired. Please re-initialize.",
383
+ },
384
+ id: null,
385
+ });
386
+ }
387
+ effectiveSessionId = sessionId;
388
+ }
389
+ else {
390
+ return res.status(400).json({
391
+ jsonrpc: "2.0",
392
+ error: { code: -32000, message: "Bad Request: No valid session ID provided" },
393
+ id: null,
394
+ });
395
+ }
396
+ context.sessionId = effectiveSessionId;
397
+ // sessionIdGenerator is undefined because session lifecycle (create/refresh/delete)
398
+ // is owned by the route handler above and persisted in Redis, not by the SDK transport.
399
+ //
348
400
  // Use SSE responses for tool calls (enableJsonResponse: false). The SDK then
349
401
  // flushes response headers immediately after parsing the request rather than
350
402
  // buffering until the tool returns. This is required for long-running tools
@@ -359,9 +411,9 @@ async function main() {
359
411
  transport.close();
360
412
  server.close();
361
413
  });
414
+ installTransportArgAliasing(transport);
415
+ await server.connect(transport);
362
416
  await requestContext.run(context, async () => {
363
- installTransportArgAliasing(transport);
364
- await server.connect(transport);
365
417
  await transport.handleRequest(req, res, req.body);
366
418
  });
367
419
  }
@@ -456,6 +508,7 @@ async function main() {
456
508
  }
457
509
  else {
458
510
  stdioApiKey = cliOptions.apiKey || process.env.CONTEXT7_API_KEY;
511
+ stdioSessionId = randomUUID();
459
512
  process.stdin.on("end", () => process.exit(0));
460
513
  process.stdin.on("close", () => process.exit(0));
461
514
  process.on("SIGHUP", () => process.exit(0));
package/dist/lib/api.js CHANGED
@@ -81,6 +81,11 @@ else if (CUSTOM_CA_CERTS) {
81
81
  }
82
82
  }
83
83
  }
84
+ function readPromptSignal(response, context) {
85
+ if (response.headers.get("X-Context7-Auth-Prompt") === "1") {
86
+ context.shouldPrompt = true;
87
+ }
88
+ }
84
89
  /**
85
90
  * Searches for libraries matching the given query
86
91
  * @param query The user's question or task (used for LLM relevance ranking)
@@ -95,6 +100,7 @@ export async function searchLibraries(query, libraryName, context = {}) {
95
100
  url.searchParams.set("libraryName", libraryName);
96
101
  const headers = generateHeaders(context);
97
102
  const response = await fetch(url, { headers });
103
+ readPromptSignal(response, context);
98
104
  if (!response.ok) {
99
105
  const errorMessage = await parseErrorResponse(response, context.apiKey);
100
106
  console.error(errorMessage);
@@ -122,6 +128,7 @@ export async function fetchLibraryContext(request, context = {}) {
122
128
  url.searchParams.set("libraryId", request.libraryId);
123
129
  const headers = generateHeaders(context);
124
130
  const response = await fetch(url, { headers });
131
+ readPromptSignal(response, context);
125
132
  if (!response.ok) {
126
133
  const errorMessage = await parseErrorResponse(response, context.apiKey);
127
134
  console.error(errorMessage);
@@ -0,0 +1,51 @@
1
+ function clientFlagForCli(ide) {
2
+ if (!ide)
3
+ return "";
4
+ const lower = ide.toLowerCase();
5
+ if (lower.includes("cursor"))
6
+ return "--cursor";
7
+ if (lower.includes("claude"))
8
+ return "--claude";
9
+ if (lower.includes("codex"))
10
+ return "--codex";
11
+ if (lower.includes("opencode"))
12
+ return "--opencode";
13
+ if (lower.includes("gemini"))
14
+ return "--gemini";
15
+ return "";
16
+ }
17
+ /**
18
+ * Appends a sign-in nudge to `text` when the backend has signaled (via
19
+ * `X-Context7-Auth-Prompt: 1`, captured on `ctx.shouldPrompt` in api.ts)
20
+ * that the anonymous caller should be prompted to authenticate. No-op for
21
+ * authenticated callers or when the signal wasn't set.
22
+ */
23
+ export function appendAuthPrompt(text, ctx) {
24
+ if (ctx.apiKey || !ctx.shouldPrompt)
25
+ return text;
26
+ return `${text}\n\n${buildAuthPrompt({
27
+ clientIde: ctx.clientInfo?.ide,
28
+ transport: ctx.transport,
29
+ })}`;
30
+ }
31
+ export function buildAuthPrompt(opts) {
32
+ const flag = clientFlagForCli(opts.clientIde);
33
+ const transportFlag = opts.transport === "stdio" ? " --stdio" : "";
34
+ const command = flag
35
+ ? `npx ctx7 setup ${flag} --mcp${transportFlag} -y`
36
+ : `npx ctx7 setup --mcp${transportFlag}`;
37
+ return [
38
+ "---",
39
+ `**[Heads up] Notice for the user — please relay the following section to them and offer to run the command for them after their confirmation:**`,
40
+ "",
41
+ "> You're using Context7 anonymously. To sign in for **free** higher rate limits, run this in your terminal:",
42
+ ">",
43
+ "> ```",
44
+ `> ${command}`,
45
+ "> ```",
46
+ ">",
47
+ "> It opens the browser, completes sign-in, and writes credentials into your MCP client config. After it finishes, disable + re-enable the Context7 MCP server in your editor so the new credentials take effect.",
48
+ "",
49
+ `(Background for the assistant: this user is using Context7 anonymously. Surface the notice above to the user; with their permission, you may run \`${command}\` for them via your shell tool.)`,
50
+ ].join("\n");
51
+ }
@@ -36,6 +36,9 @@ export function generateHeaders(context) {
36
36
  if (context.clientIp) {
37
37
  headers["mcp-client-ip"] = encryptClientIp(context.clientIp);
38
38
  }
39
+ if (context.sessionId) {
40
+ headers["mcp-session-id"] = context.sessionId;
41
+ }
39
42
  if (context.apiKey) {
40
43
  headers["Authorization"] = `Bearer ${context.apiKey}`;
41
44
  }
@@ -0,0 +1,14 @@
1
+ import { Redis } from "@upstash/redis";
2
+ let cached;
3
+ /**
4
+ * Returns the shared Upstash Redis client. Throws if credentials are missing.
5
+ */
6
+ export function getRedis() {
7
+ if (cached)
8
+ return cached;
9
+ if (!process.env.UPSTASH_REDIS_REST_URL || !process.env.UPSTASH_REDIS_REST_TOKEN) {
10
+ throw new Error("Upstash Redis credentials are required. Set UPSTASH_REDIS_REST_URL and UPSTASH_REDIS_REST_TOKEN.");
11
+ }
12
+ cached = Redis.fromEnv();
13
+ return cached;
14
+ }
@@ -0,0 +1,47 @@
1
+ import { getRedis } from "./redis.js";
2
+ const SESSION_TTL_SECONDS = 7 * 24 * 60 * 60; // 7 days
3
+ const REFRESH_THRESHOLD_SECONDS = 24 * 60 * 60; // 1 day — only extend TTL when below this
4
+ const SESSION_KEY_PREFIX = "#mcp#session#";
5
+ // Fail-open: log Redis errors and proceed. The session ID isn't an auth/authz
6
+ // primitive — only an opaque identifier for log correlation and spec compliance —
7
+ // so an unreachable Redis shouldn't block clients. Ghost sessions self-heal on
8
+ // the next refresh (returns false → client gets 404 → re-inits).
9
+ export function createSessionStore() {
10
+ const redis = getRedis();
11
+ const getSessionKey = (sessionId) => `${SESSION_KEY_PREFIX}${sessionId}`;
12
+ return {
13
+ async create(sessionId) {
14
+ try {
15
+ await redis.set(getSessionKey(sessionId), "1", { ex: SESSION_TTL_SECONDS });
16
+ }
17
+ catch (err) {
18
+ console.error(`Error creating Redis session record ${sessionId}:`, err);
19
+ }
20
+ },
21
+ async refresh(sessionId) {
22
+ try {
23
+ // One TTL call tells us both whether the key exists AND how much time it has left.
24
+ // Only issue an EXPIRE write when the key is approaching expiry
25
+ const ttl = await redis.ttl(getSessionKey(sessionId));
26
+ if (ttl < 0)
27
+ return false;
28
+ if (ttl < REFRESH_THRESHOLD_SECONDS) {
29
+ await redis.expire(getSessionKey(sessionId), SESSION_TTL_SECONDS);
30
+ }
31
+ return true;
32
+ }
33
+ catch (err) {
34
+ console.error(`Error refreshing Redis session record ${sessionId}:`, err);
35
+ return true;
36
+ }
37
+ },
38
+ async delete(sessionId) {
39
+ try {
40
+ await redis.del(getSessionKey(sessionId));
41
+ }
42
+ catch (err) {
43
+ console.error(`Error deleting Redis session record ${sessionId}:`, err);
44
+ }
45
+ },
46
+ };
47
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@upstash/context7-mcp",
3
- "version": "2.2.5",
3
+ "version": "3.0.0",
4
4
  "mcpName": "io.github.upstash/context7",
5
5
  "description": "MCP server for Context7",
6
6
  "repository": {
@@ -35,6 +35,7 @@
35
35
  "dependencies": {
36
36
  "@modelcontextprotocol/sdk": "^1.25.1",
37
37
  "@types/express": "^5.0.4",
38
+ "@upstash/redis": "^1.38.0",
38
39
  "commander": "^14.0.0",
39
40
  "express": "^5.1.0",
40
41
  "jose": "^6.1.3",