-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
47 lines (47 loc) · 1.58 KB
/
Copy pathserver.json
File metadata and controls
47 lines (47 loc) · 1.58 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.oscardvs/vibetex",
"description": "An MCP server for LaTeX and Overleaf projects: Git bridge, project sync, and LaTeX compile for Claude and other MCP clients.",
"version": "0.1.0",
"repository": {
"url": "https://github.com/oscardvs/vibetex",
"source": "github"
},
"packages": [
{
"registryType": "npm",
"identifier": "@oscardvs/vibetex",
"version": "0.1.0",
"transport": { "type": "stdio" },
"environmentVariables": [
{
"name": "OVERLEAF_GIT_TOKEN",
"description": "Overleaf Git authentication token (paid plans). Enables read/write project sync over the official Git bridge.",
"isSecret": true,
"isRequired": false
},
{
"name": "OVERLEAF_PROJECT_ID",
"description": "Default Overleaf project id (the 24-hex id in the editor URL overleaf.com/project/<id>).",
"isRequired": false
},
{
"name": "OVERLEAF_PROJECTS",
"description": "Comma-separated alias=projectId list for multiple projects, e.g. thesis=64a...,paper=64b...",
"isRequired": false
},
{
"name": "VIBETEX_ALLOW_DELETE",
"description": "Set to true to allow file deletion in the working copy (off by default; also requires confirm:true).",
"isRequired": false
}
]
}
],
"remotes": [
{
"type": "streamable-http",
"url": "https://mcp.vibetex.dev/mcp"
}
]
}