@ai-uni/mcp-server 0.1.0 → 0.1.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 -3
- package/package.json +4 -1
package/dist/index.js
CHANGED
|
@@ -4,9 +4,8 @@ import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js"
|
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
import { supabase } from "./supabase.js";
|
|
6
6
|
import { getStudentId } from "./auth.js";
|
|
7
|
-
const server = new McpServer({
|
|
8
|
-
|
|
9
|
-
version: "0.1.0",
|
|
7
|
+
const server = new McpServer({ name: "aiuni-mcp", version: "0.1.2" }, {
|
|
8
|
+
instructions: "You are connected to AI Uni's curriculum system. Use the AI Uni MCP tools to tutor students through their coursework. For full tutor behavior, the student should create an AI Uni Project in Claude Desktop with the complete system prompt from app.aiuni.tech/setup.",
|
|
10
9
|
});
|
|
11
10
|
// ---------------------------------------------------------------------------
|
|
12
11
|
// Helpers
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-uni/mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -18,6 +18,9 @@
|
|
|
18
18
|
"@supabase/supabase-js": "^2.98.0",
|
|
19
19
|
"zod": "^3.23.0"
|
|
20
20
|
},
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": ">=18"
|
|
23
|
+
},
|
|
21
24
|
"devDependencies": {
|
|
22
25
|
"@types/node": "^25.3.5",
|
|
23
26
|
"typescript": "^5.9.3"
|