@basegrid_tech/mcp 0.13.9 → 0.15.0
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 +8 -2
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -8,7 +8,7 @@ import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js"
|
|
|
8
8
|
import fs4 from "fs";
|
|
9
9
|
|
|
10
10
|
// ../shared/src/types.ts
|
|
11
|
-
var CLAUDE_DEFAULT_MODEL_ID = "claude-sonnet-
|
|
11
|
+
var CLAUDE_DEFAULT_MODEL_ID = "claude-sonnet-5";
|
|
12
12
|
var CLAUDE_DEFAULT_EFFORT = "medium";
|
|
13
13
|
var CLAUDE_OBSOLETE_MODEL_IDS = [
|
|
14
14
|
"claude-opus-4-7[1m]",
|
|
@@ -669,6 +669,12 @@ function createSchema() {
|
|
|
669
669
|
updated_at INTEGER NOT NULL
|
|
670
670
|
);
|
|
671
671
|
|
|
672
|
+
CREATE TABLE IF NOT EXISTS worktree_notes (
|
|
673
|
+
worktree_path TEXT PRIMARY KEY,
|
|
674
|
+
body TEXT NOT NULL,
|
|
675
|
+
updated_at INTEGER NOT NULL
|
|
676
|
+
);
|
|
677
|
+
|
|
672
678
|
CREATE TABLE IF NOT EXISTS worktree_list_cache (
|
|
673
679
|
project_path TEXT NOT NULL,
|
|
674
680
|
worktree_path TEXT NOT NULL,
|
|
@@ -3763,7 +3769,7 @@ console.warn = (...args) => _origError("[mcp:warn]", ...args);
|
|
|
3763
3769
|
console.error = (...args) => _origError("[mcp:error]", ...args);
|
|
3764
3770
|
async function main() {
|
|
3765
3771
|
configManager.init();
|
|
3766
|
-
const version = true ? "0.
|
|
3772
|
+
const version = true ? "0.15.0" : createRequire(import.meta.url)("../package.json").version;
|
|
3767
3773
|
const server = createMcpServer(version);
|
|
3768
3774
|
const transport = new StdioServerTransport();
|
|
3769
3775
|
await server.connect(transport);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@basegrid_tech/mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"description": "BaseGrid MCP server — task management, git, and workflow tools for AI coding agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"zod": "^4.3.6"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@basegrid/server": "0.
|
|
46
|
-
"@basegrid/shared": "0.
|
|
45
|
+
"@basegrid/server": "0.15.0",
|
|
46
|
+
"@basegrid/shared": "0.15.0",
|
|
47
47
|
"tsup": "^8.5.1",
|
|
48
48
|
"tsx": "^4.21.0",
|
|
49
49
|
"typescript": "^6.0.3"
|