├── .gitignore ├── .python-version ├── Dockerfile ├── LICENSE ├── README.md ├── pyproject.toml ├── server.py ├── smithery.yaml └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdousbhai/wsb-analyst-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdousbhai/wsb-analyst-mcp/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdousbhai/wsb-analyst-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdousbhai/wsb-analyst-mcp/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdousbhai/wsb-analyst-mcp/HEAD/pyproject.toml -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdousbhai/wsb-analyst-mcp/HEAD/server.py -------------------------------------------------------------------------------- /smithery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdousbhai/wsb-analyst-mcp/HEAD/smithery.yaml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdousbhai/wsb-analyst-mcp/HEAD/uv.lock --------------------------------------------------------------------------------