-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
57 lines (57 loc) · 1.77 KB
/
server.json
File metadata and controls
57 lines (57 loc) · 1.77 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
49
50
51
52
53
54
55
56
57
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.TKMD/reftrixmcp",
"description": "Web design analysis with 35 MCP tools: layout, motion, quality, semantic search via pgvector",
"repository": {
"url": "https://github.com/TKMD/ReftrixMCP",
"source": "github"
},
"version": "0.3.0",
"packages": [
{
"registryType": "npm",
"identifier": "@reftrixmcp/mcp-server",
"version": "0.3.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "DATABASE_URL",
"description": "PostgreSQL connection string with pgvector extension",
"isRequired": true,
"format": "string",
"isSecret": true
},
{
"name": "REDIS_URL",
"description": "Redis/Valkey connection URL for BullMQ job queue. Required for page.analyze async processing and rate limiting. Falls back to in-memory when unavailable",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "OLLAMA_BASE_URL",
"description": "Ollama API base URL for Vision LLM integration (default: http://localhost:11434)",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "OLLAMA_HOST",
"description": "Ollama API endpoint for vision analysis",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "NODE_ENV",
"description": "Node environment (development/production)",
"isRequired": false,
"format": "string",
"isSecret": false
}
]
}
]
}