Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions docs/llms-full.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7356,6 +7356,40 @@ The npm package exposes the demo server as `bilig-workpaper-mcp` by default:
npm exec --package @bilig/workpaper@latest -- bilig-workpaper-mcp
```

### Cursor MCP Config

Cursor versions can expose MCP settings in different UI locations, so add the
server entry wherever your installation lets you edit MCP JSON:

```json
{
"mcpServers": {
"bilig-workpaper": {
"command": "npm",
"args": [
"exec",
"--yes",
"--package",
"@bilig/headless",
"--",
"bilig-workpaper-mcp"
]
}
}
}
```

This starts the published package's `bilig-workpaper-mcp` stdio server without
cloning the monorepo. The server exposes `read_workpaper_summary` for summary
range reads and `set_workpaper_input_cell` for verified input edits.

Tiny smoke prompt:

```text
Use the bilig-workpaper MCP server. Read Summary!A1:B5, set Inputs!B3 to 0.4,
and report expectedArr before and after the edit.
```

## Remote Stateless Endpoint

The hosted app runtime also exposes a JSON-only Streamable HTTP MCP endpoint for
Expand Down
34 changes: 34 additions & 0 deletions docs/mcp-workpaper-tool-server.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,40 @@ The npm package exposes the demo server as `bilig-workpaper-mcp` by default:
npm exec --package @bilig/workpaper@latest -- bilig-workpaper-mcp
```

### Cursor MCP Config

Cursor versions can expose MCP settings in different UI locations, so add the
server entry wherever your installation lets you edit MCP JSON:

```json
{
"mcpServers": {
"bilig-workpaper": {
"command": "npm",
"args": [
"exec",
"--yes",
"--package",
"@bilig/headless",
"--",
"bilig-workpaper-mcp"
]
}
}
}
```

This starts the published package's `bilig-workpaper-mcp` stdio server without
cloning the monorepo. The server exposes `read_workpaper_summary` for summary
range reads and `set_workpaper_input_cell` for verified input edits.

Tiny smoke prompt:

```text
Use the bilig-workpaper MCP server. Read Summary!A1:B5, set Inputs!B3 to 0.4,
and report expectedArr before and after the edit.
```

## Remote Stateless Endpoint

The hosted app runtime also exposes a JSON-only Streamable HTTP MCP endpoint for
Expand Down