@longtable/mcp 0.1.22 → 0.1.24

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 CHANGED
@@ -14,7 +14,7 @@ longtable-state
14
14
  Run:
15
15
 
16
16
  ```bash
17
- npx -y @longtable/mcp@0.1.22
17
+ npx -y @longtable/mcp@0.1.24
18
18
  ```
19
19
 
20
20
  Self-test:
@@ -31,3 +31,6 @@ longtable mcp install --provider codex --checkpoint-ui strong --write
31
31
 
32
32
  If MCP elicitation is unavailable or not approved, the server returns the same
33
33
  pending `QuestionRecord` as a numbered fallback.
34
+
35
+ Provider guidance should use `elicit_question` first when the MCP tool is
36
+ available. `longtable question --print` is only the CLI fallback transport.
package/dist/server.js CHANGED
@@ -11,7 +11,7 @@ import { renderQuestionRecordInput } from "@longtable/provider-claude";
11
11
  import { renderQuestionRecordPrompt } from "@longtable/provider-codex";
12
12
  import { answerWorkspaceQuestion, createWorkspaceQuestion, inspectProjectWorkspace, loadProjectContextFromDirectory, loadWorkspaceState, syncCurrentWorkspaceView } from "@longtable/cli";
13
13
  const SERVER_NAME = "longtable-state";
14
- const SERVER_VERSION = "0.1.22";
14
+ const SERVER_VERSION = "0.1.24";
15
15
  const TOOL_NAMES = [
16
16
  "read_project",
17
17
  "read_session",
@@ -325,7 +325,8 @@ export function createLongTableMcpServer() {
325
325
  questionId: created.question.id,
326
326
  answer: accepted.answer,
327
327
  rationale: accepted.rationale,
328
- provider: provider
328
+ provider: provider,
329
+ surface: "mcp_elicitation"
329
330
  });
330
331
  return textResult({
331
332
  question: decided.question,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@longtable/mcp",
3
- "version": "0.1.22",
3
+ "version": "0.1.24",
4
4
  "private": false,
5
5
  "description": "LongTable MCP transport for workspace state and Researcher Checkpoints",
6
6
  "type": "module",
@@ -26,11 +26,11 @@
26
26
  "self-test": "node ./dist/server.js --self-test"
27
27
  },
28
28
  "dependencies": {
29
- "@longtable/checkpoints": "0.1.22",
30
- "@longtable/cli": "0.1.22",
31
- "@longtable/core": "0.1.22",
32
- "@longtable/provider-claude": "0.1.22",
33
- "@longtable/provider-codex": "0.1.22",
29
+ "@longtable/checkpoints": "0.1.24",
30
+ "@longtable/cli": "0.1.24",
31
+ "@longtable/core": "0.1.24",
32
+ "@longtable/provider-claude": "0.1.24",
33
+ "@longtable/provider-codex": "0.1.24",
34
34
  "@modelcontextprotocol/sdk": "^1.29.0",
35
35
  "zod": "^4.0.0"
36
36
  },