@vornrun/mcp 0.6.1-beta.1 → 0.6.1-beta.2
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 +2 -2
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -3952,7 +3952,7 @@ function toTarget(args) {
|
|
|
3952
3952
|
function registerBrowserTools(server) {
|
|
3953
3953
|
server.tool(
|
|
3954
3954
|
"read_page",
|
|
3955
|
-
'Read your session browser pane as an accessibility tree. Interactive elements carry a "ref" you can pass to browser_interact. Prefer this over screenshot: it is far cheaper and gives you actionable handles. Long pages paginate \u2014 pass the returned nextCursor back as `cursor`.',
|
|
3955
|
+
'Read your session browser pane as an accessibility tree. Interactive elements carry a "ref" you can pass to browser_interact. Prefer this over screenshot: it is far cheaper and gives you actionable handles. Long pages paginate \u2014 pass the returned nextCursor back as `cursor`. When the page is a design artifact it also returns "artifact" (what the file declares) and "artifactValues" (what it is currently showing). Work from artifactValues: a person can turn a control without spending a turn, so the value on screen is routinely not the default in the file.',
|
|
3956
3956
|
{
|
|
3957
3957
|
filter: z8.enum(["interactive", "all"]).optional().describe('"interactive" (default) returns only actionable elements; "all" adds text'),
|
|
3958
3958
|
cursor: V.shortText.optional().describe("nextCursor from a previous read_page result"),
|
|
@@ -4370,7 +4370,7 @@ console.warn = (...args) => _origError("[mcp:warn]", ...args);
|
|
|
4370
4370
|
console.error = (...args) => _origError("[mcp:error]", ...args);
|
|
4371
4371
|
async function main() {
|
|
4372
4372
|
configManager.init();
|
|
4373
|
-
const version = true ? "0.6.1-beta.
|
|
4373
|
+
const version = true ? "0.6.1-beta.2" : createRequire(import.meta.url)("../package.json").version;
|
|
4374
4374
|
const server = createMcpServer(version);
|
|
4375
4375
|
const transport = new StdioServerTransport();
|
|
4376
4376
|
await server.connect(transport);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vornrun/mcp",
|
|
3
|
-
"version": "0.6.1-beta.
|
|
3
|
+
"version": "0.6.1-beta.2",
|
|
4
4
|
"description": "Vorn MCP server — task management, git, and workflow tools for AI coding agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"zod": "^4.4.3"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@vornrun/server": "0.6.1-beta.
|
|
42
|
-
"@vornrun/shared": "0.6.1-beta.
|
|
41
|
+
"@vornrun/server": "0.6.1-beta.2",
|
|
42
|
+
"@vornrun/shared": "0.6.1-beta.2",
|
|
43
43
|
"tsup": "^8.5.1",
|
|
44
44
|
"tsx": "^4.23.1",
|
|
45
45
|
"typescript": "^6.0.3"
|