@vibeuniv/mcp-server 0.1.0 → 0.1.1

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 CHANGED
@@ -11,7 +11,7 @@ import { registerLogSession } from "./tools/log-session.js";
11
11
  import { registerAskTutor } from "./tools/ask-tutor.js";
12
12
  import { registerSubmitAnalysis } from "./tools/submit-analysis.js";
13
13
  async function main() {
14
- console.error("[vibeuniv] Starting VibeUniv MCP Server v0.1.0...");
14
+ console.error("[vibeuniv] Starting VibeUniv MCP Server v0.1.1...");
15
15
  const config = loadConfig();
16
16
  const client = new VibeUnivClient(config.apiKey, config.apiUrl);
17
17
  const server = new McpServer({
@@ -12,7 +12,7 @@ export class VibeUnivClient {
12
12
  const headers = {
13
13
  Authorization: `Bearer ${this.apiKey}`,
14
14
  "Content-Type": "application/json",
15
- "User-Agent": "vibeuniv-mcp-server/0.1.0",
15
+ "User-Agent": "vibeuniv-mcp-server/0.1.1",
16
16
  };
17
17
  const response = await fetch(url, {
18
18
  method,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibeuniv/mcp-server",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "VibeUniv MCP Server - Sync your vibe-coded projects for tech stack analysis and learning",
5
5
  "type": "module",
6
6
  "bin": {
@@ -21,6 +21,9 @@
21
21
  "tech-stack",
22
22
  "learning"
23
23
  ],
24
+ "engines": {
25
+ "node": ">=18"
26
+ },
24
27
  "license": "MIT",
25
28
  "repository": {
26
29
  "type": "git",
@@ -29,7 +32,7 @@
29
32
  },
30
33
  "dependencies": {
31
34
  "@modelcontextprotocol/sdk": "^1.12.1",
32
- "glob": "^11.0.0",
35
+ "glob": "^13.0.6",
33
36
  "zod": "^3.24.0"
34
37
  },
35
38
  "devDependencies": {