@bilig/headless 0.11.32 → 0.11.34

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.
Files changed (2) hide show
  1. package/README.md +11 -0
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -106,6 +106,10 @@ Pick the path that matches the job:
106
106
  [`npm run agent:framework-adapters`](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#agent-framework-adapters).
107
107
  - Map WorkPaper tools to Vercel AI SDK and LangChain:
108
108
  [framework adapter guide](https://proompteng.github.io/bilig/vercel-ai-sdk-langchain-spreadsheet-tool.html).
109
+ - Expose WorkPaper through an MCP-style tool server shape:
110
+ [`npm run agent:mcp-tools`](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#mcp-tool-server-shape)
111
+ and the
112
+ [MCP spreadsheet tool server guide](https://proompteng.github.io/bilig/mcp-workpaper-tool-server.html).
109
113
  - Put WorkPaper behind HTTP:
110
114
  [`examples/serverless-workpaper-api`](https://github.com/proompteng/bilig/tree/main/examples/serverless-workpaper-api).
111
115
  - Compare engines before adopting:
@@ -137,6 +141,7 @@ The full example catalog lives in
137
141
  | Verify an agent writeback | `npm run agent:verify` | [Agent writeback verification](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#agent-writeback-verification) |
138
142
  | Wrap WorkPaper operations as tools | `npm run agent:tool-call` | [Agent tool call loop](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#agent-tool-call-loop) |
139
143
  | Adapt tools to agent frameworks | `npm run agent:framework-adapters` | [Agent framework adapters](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#agent-framework-adapters) |
144
+ | Expose MCP-style tools | `npm run agent:mcp-tools` | [MCP tool server shape](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#mcp-tool-server-shape) |
140
145
  | Flag budget variance rows | `npm run budget-variance` | [Budget variance alerts](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#budget-variance-alerts) |
141
146
  | Check fulfillment capacity | `npm run fulfillment-capacity` | [Fulfillment capacity plan](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#fulfillment-capacity-plan) |
142
147
  | Check quote approval threshold | `npm run quote-approval` | [Quote approval threshold](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#quote-approval-threshold) |
@@ -391,6 +396,12 @@ persistence bytes, and restored readback equality.
391
396
  into Vercel AI SDK and LangChain-style tool objects without adding either
392
397
  framework as an example dependency.
393
398
 
399
+ `npm run agent:mcp-tools` exposes the same operations through dependency-free
400
+ MCP-style `tools/list` and `tools/call` JSON-RPC responses with JSON Schema
401
+ inputs and structured formula readback.
402
+ The `mcp` keyword points to this runnable local adapter: no hosted service, no
403
+ API key, and no agent framework dependency.
404
+
394
405
  For a framework-neutral recipe that wraps WorkPaper operations as agent-callable
395
406
  tools, see
396
407
  [`docs/agent-workpaper-tool-calling-recipe.md`](https://github.com/proompteng/bilig/blob/main/docs/agent-workpaper-tool-calling-recipe.md).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bilig/headless",
3
- "version": "0.11.32",
3
+ "version": "0.11.34",
4
4
  "description": "Headless spreadsheet engine for Node.js formulas, agent tools, workbook JSON persistence, and service-side spreadsheet automation.",
5
5
  "keywords": [
6
6
  "agent",
@@ -79,9 +79,9 @@
79
79
  "build": "rm -rf dist tsconfig.tsbuildinfo && tsc -p tsconfig.json"
80
80
  },
81
81
  "dependencies": {
82
- "@bilig/core": "0.11.32",
83
- "@bilig/formula": "0.11.32",
84
- "@bilig/protocol": "0.11.32"
82
+ "@bilig/core": "0.11.34",
83
+ "@bilig/formula": "0.11.34",
84
+ "@bilig/protocol": "0.11.34"
85
85
  },
86
86
  "engines": {
87
87
  "node": ">=24.0.0"