@imstudium/mcp 0.1.2 → 0.1.3

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -49,7 +49,7 @@ var MCP_TOOLS = [
49
49
  },
50
50
  {
51
51
  name: "studium_read_material",
52
- description: "Extract one course file (PDF/PPTX/DOCX/images). Returns text + pageImages + viewerHtml. MANDATORY for agents: read every pageImage OR open viewerFileUrl in Playwright/browser before explaining slides \u2014 text alone misses diagrams and formulas.",
52
+ description: "Extract one course file (PDF/PPTX/DOCX/images). Returns text + pageImages + viewerHtml. Text is poppler/OCR only \u2014 not LaTeX; read every pageImage for formulas/diagrams before explaining.",
53
53
  inputSchema: {
54
54
  type: "object",
55
55
  properties: {
@@ -136,7 +136,7 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
136
136
  focusCourses: ws.courses.filter((c) => !focusId || c.semesterId === focusId),
137
137
  allCourses: ws.courses,
138
138
  nextDeadlines: ws.nextDeadlines,
139
- hint: "Default to focusCourses. Find content: grep/semantic-search corpus.jsonl (see searchGuidance). Paths: course.path + search/materials.json."
139
+ hint: "Default to focusCourses. Find content: grep/semantic-search corpus.jsonl (see searchGuidance). Paths: course.path + search/materials.json. Text extraction has no LaTeX \u2014 see searchGuidance.extractionLimits."
140
140
  });
141
141
  }
142
142
  case "studium_klausuren": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@imstudium/mcp",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "ImStudium MCP server — study planning tools for LLMs",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -36,7 +36,7 @@
36
36
  "prepublishOnly": "bun run build && bun run typecheck"
37
37
  },
38
38
  "dependencies": {
39
- "@imstudium/sdk": "^0.1.2",
39
+ "@imstudium/sdk": "^0.1.3",
40
40
  "@modelcontextprotocol/sdk": "^1.12.1"
41
41
  },
42
42
  "devDependencies": {