-
-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathserver.json
More file actions
158 lines (158 loc) · 5.64 KB
/
Copy pathserver.json
File metadata and controls
158 lines (158 loc) · 5.64 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.wshobson/maverick-mcp",
"description": "Stock analysis MCP server with S&P 500 data, technical indicators, and AI research tools.",
"status": "active",
"repository": {
"url": "https://github.com/wshobson/maverick-mcp",
"source": "github"
},
"version": "1.0.0",
"packages": [
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "maverick-mcp-server",
"version": "1.0.0",
"runtimeHint": "uvx",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "DATABASE_URL",
"description": "Optional database URL. Defaults to SQLite (sqlite:///maverick.db) if not provided. PostgreSQL supported for better performance.",
"isRequired": false,
"isSecret": false
},
{
"name": "REDIS_HOST",
"description": "Optional Redis host for enhanced caching performance. Defaults to in-memory caching if not provided.",
"isRequired": false,
"isSecret": false
},
{
"name": "REDIS_PORT",
"description": "Optional Redis port (default: 6379)",
"isRequired": false,
"isSecret": false
},
{
"name": "LLM_PROVIDER",
"description": "Optional LLM provider for the research extra (e.g. anthropic, openai, openai_compatible). Required only to enable research agent tools; bring your own API key.",
"isRequired": false,
"isSecret": false
},
{
"name": "LLM_API_KEY",
"description": "Optional API key for the configured LLM_PROVIDER. Required only when LLM_PROVIDER is set.",
"isRequired": false,
"isSecret": true
},
{
"name": "LLM_MODEL",
"description": "Optional model name for the configured LLM_PROVIDER. Required only when LLM_PROVIDER is set.",
"isRequired": false,
"isSecret": false
},
{
"name": "LLM_BASE_URL",
"description": "Optional base URL override, required when LLM_PROVIDER=openai_compatible.",
"isRequired": false,
"isSecret": false
},
{
"name": "LLM_TEMPERATURE",
"description": "Optional sampling temperature for the configured LLM_PROVIDER. Defaults to 0.0.",
"isRequired": false,
"isSecret": false
},
{
"name": "EXA_API_KEY",
"description": "Optional API key for Exa web search (research extra). Get at https://exa.ai",
"isRequired": false,
"isSecret": true
}
]
},
{
"registryType": "oci",
"identifier": "ghcr.io/wshobson/maverick-mcp:1.0.0",
"version": "1.0.0",
"transport": {
"type": "stdio"
}
}
],
"remotes": [
{
"type": "streamable-http",
"url": "http://localhost:8003/mcp/",
"name": "streamable-http",
"description": "Streamable HTTP transport for remote access via mcp-remote bridge",
"setup_instructions": [
"Clone repository: git clone https://github.com/wshobson/maverick-mcp.git",
"Install dependencies: uv sync (or pip install -e .)",
"Copy .env.example to .env and configure it",
"Start server: make dev (or uv run python -m maverick.server --transport http --port 8003)",
"Connect via mcp-remote: npx mcp-remote http://localhost:8003/mcp/"
],
"environmentVariables": [
{
"name": "DATABASE_URL",
"description": "Optional database URL. Defaults to SQLite (sqlite:///maverick.db) if not provided. PostgreSQL supported for better performance.",
"isRequired": false,
"isSecret": false
},
{
"name": "REDIS_HOST",
"description": "Optional Redis host for enhanced caching performance. Defaults to in-memory caching if not provided.",
"isRequired": false,
"isSecret": false
},
{
"name": "REDIS_PORT",
"description": "Optional Redis port (default: 6379)",
"isRequired": false,
"isSecret": false
},
{
"name": "LLM_PROVIDER",
"description": "Optional LLM provider for the research extra (e.g. anthropic, openai, openai_compatible). Required only to enable research agent tools; bring your own API key.",
"isRequired": false,
"isSecret": false
},
{
"name": "LLM_API_KEY",
"description": "Optional API key for the configured LLM_PROVIDER. Required only when LLM_PROVIDER is set.",
"isRequired": false,
"isSecret": true
},
{
"name": "LLM_MODEL",
"description": "Optional model name for the configured LLM_PROVIDER. Required only when LLM_PROVIDER is set.",
"isRequired": false,
"isSecret": false
},
{
"name": "LLM_BASE_URL",
"description": "Optional base URL override, required when LLM_PROVIDER=openai_compatible.",
"isRequired": false,
"isSecret": false
},
{
"name": "LLM_TEMPERATURE",
"description": "Optional sampling temperature for the configured LLM_PROVIDER. Defaults to 0.0.",
"isRequired": false,
"isSecret": false
},
{
"name": "EXA_API_KEY",
"description": "Optional API key for Exa web search (research extra). Get at https://exa.ai",
"isRequired": false,
"isSecret": true
}
]
}
]
}