├── .env ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .tool-versions ├── LICENSE.md ├── Makefile ├── README.md ├── bearer_token_mgr.go ├── claude_desktop_config.json ├── go.mod ├── go.sum ├── main.go └── static └── img └── MCP.png /.env: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantage-sh/vantage-mcp-server/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .cursor/ 3 | vantage-mcp-server* -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | golang 1.22.5 2 | nodejs 23.10.0 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantage-sh/vantage-mcp-server/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantage-sh/vantage-mcp-server/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantage-sh/vantage-mcp-server/HEAD/README.md -------------------------------------------------------------------------------- /bearer_token_mgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantage-sh/vantage-mcp-server/HEAD/bearer_token_mgr.go -------------------------------------------------------------------------------- /claude_desktop_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantage-sh/vantage-mcp-server/HEAD/claude_desktop_config.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantage-sh/vantage-mcp-server/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantage-sh/vantage-mcp-server/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantage-sh/vantage-mcp-server/HEAD/main.go -------------------------------------------------------------------------------- /static/img/MCP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantage-sh/vantage-mcp-server/HEAD/static/img/MCP.png --------------------------------------------------------------------------------