vantage-mcp-server 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # `vantage-mcp-server`
2
+
3
+ Our locally ran MCP server that runs the same logic as our remote MCP for tooling. To use this, simply install the package and set `VANTAGE_TOKEN` as an environment variable that is your Vantage token.
4
+
5
+ To use this package with Claude Desktop for example, you'd use the following configuration:
6
+
7
+ ```json
8
+ {
9
+ "mcpServers": {
10
+ "Vantage MCP Server": {
11
+ "command": "npx",
12
+ "args": ["-y", "vantage-mcp-server"],
13
+ "env": {
14
+ "VANTAGE_TOKEN": "your token goes here"
15
+ }
16
+ }
17
+ }
18
+ }
19
+ ```
20
+
21
+ (replace `VANTAGE_TOKEN` with your user token)