-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@mjyoo2/overleaf-mcp",
"version": "1.0.0",
"description": "MCP server that lets AI assistants read Overleaf projects, parse LaTeX document structure, and push section-level edits back via Git.",
"type": "module",
"main": "overleaf-mcp-server.js",
"bin": {
"overleaf-mcp": "./overleaf-mcp-server.js"
},
"files": [
"overleaf-mcp-server.js",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node overleaf-mcp-server.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"author": "Minjong Yoo (https://github.com/mjyoo2)",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mjyoo2/OverleafMCP.git"
},
"bugs": {
"url": "https://github.com/mjyoo2/OverleafMCP/issues"
},
"homepage": "https://github.com/mjyoo2/OverleafMCP#readme",
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"overleaf",
"latex",
"claude",
"claude-desktop",
"anthropic",
"ai-tools"
],
"license": "MIT"
}