-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathserver.json
More file actions
37 lines (37 loc) · 1.25 KB
/
server.json
File metadata and controls
37 lines (37 loc) · 1.25 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.jonradoff/lastsaas",
"description": "Read-only admin MCP server for LastSaaS — dashboards, users, tenants, billing, logs, health.",
"repository": {
"url": "https://github.com/jonradoff/lastsaas",
"source": "github"
},
"version": "1.0.0",
"packages": [
{
"registryType": "mcpb",
"identifier": "https://github.com/jonradoff/lastsaas/releases/download/v1.0.0/lastsaas-darwin-arm64.mcpb",
"version": "1.0.0",
"fileSha256": "bdd36be9e481def3b8dd36801ada11bffb9f52c0d6f81a6a9afb6efb3c3933a0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "LASTSAAS_URL",
"description": "Base URL of the LastSaaS instance (e.g., https://your-app.fly.dev or http://localhost:4290)",
"isRequired": true,
"isSecret": false,
"format": "string"
},
{
"name": "LASTSAAS_API_KEY",
"description": "Root-tenant API key with admin authority (starts with lsk_). Create in Admin → API Keys.",
"isRequired": true,
"isSecret": true,
"format": "string"
}
]
}
]
}