├── .env.example ├── .gitignore ├── .python-version ├── LICENSE ├── README.md ├── pyproject.toml ├── server.py └── uv.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/financial-datasets/mcp-server/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/financial-datasets/mcp-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.11 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/financial-datasets/mcp-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/financial-datasets/mcp-server/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/financial-datasets/mcp-server/HEAD/pyproject.toml -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/financial-datasets/mcp-server/HEAD/server.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/financial-datasets/mcp-server/HEAD/uv.lock --------------------------------------------------------------------------------