@vitest-agent/mcp 1.3.4 → 1.3.5

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
@@ -22,7 +22,7 @@ npm install --save-dev @vitest-agent/mcp
22
22
  pnpm add -D @vitest-agent/mcp
23
23
  ```
24
24
 
25
- `@vitest-agent/mcp` is a required peer of `@vitest-agent/plugin` and arrives automatically with modern pnpm and npm.
25
+ `@vitest-agent/mcp` is a regular dependency of `@vitest-agent/plugin` and installs with it automatically.
26
26
 
27
27
  ## Quick start
28
28
 
package/index.d.ts CHANGED
@@ -2,7 +2,6 @@ import { DataReader, DataStore, OutputRenderer, ProjectDiscovery } from "@vitest
2
2
  import { Layer, LogLevel, ManagedRuntime } from "effect";
3
3
  import * as NodeContext from "@effect/platform-node/NodeContext";
4
4
  import * as SqliteMigrator from "@effect/sql-sqlite-node/SqliteMigrator";
5
-
6
5
  //#region src/context.d.ts
7
6
  /**
8
7
  * Mutable holder for the MCP server's currently-associated host chat
package/index.js CHANGED
@@ -11,7 +11,7 @@ import { startMcpServer } from "./server.js";
11
11
  *
12
12
  * @public
13
13
  */
14
- const CURRENT_MCP_VERSION = "1.3.4";
14
+ const CURRENT_MCP_VERSION = "1.3.5";
15
15
 
16
16
  //#endregion
17
17
  export { CURRENT_MCP_VERSION, McpLive, appRouter, createCallerFactory, createCurrentSessionIdRef, createSessionContextRef, startMcpServer };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vitest-agent/mcp",
3
- "version": "1.3.4",
3
+ "version": "1.3.5",
4
4
  "private": false,
5
5
  "description": "Model Context Protocol server for vitest-agent. Exposes 53 tools for agent access to test data, TDD lifecycle, and session management.",
6
6
  "keywords": [
@@ -47,7 +47,7 @@
47
47
  "@effect/workflow": "^0.18.2",
48
48
  "@modelcontextprotocol/sdk": "^1.29.0",
49
49
  "@trpc/server": "^11.18.0",
50
- "@vitest-agent/sdk": "1.3.2",
50
+ "@vitest-agent/sdk": "1.3.3",
51
51
  "effect": "^3.21.4",
52
52
  "zod": "^4.4.3"
53
53
  },