@imstudium/mcp 0.1.1 → 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.
- package/dist/index.js +2 -2
- package/package.json +3 -3
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.
|
|
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.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "ImStudium MCP server — study planning tools for LLMs",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"opencode"
|
|
27
27
|
],
|
|
28
28
|
"bin": {
|
|
29
|
-
"imstudium-mcp": "
|
|
29
|
+
"imstudium-mcp": "dist/index.js"
|
|
30
30
|
},
|
|
31
31
|
"files": ["dist"],
|
|
32
32
|
"scripts": {
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"prepublishOnly": "bun run build && bun run typecheck"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@imstudium/sdk": "
|
|
39
|
+
"@imstudium/sdk": "^0.1.3",
|
|
40
40
|
"@modelcontextprotocol/sdk": "^1.12.1"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|