├── .gitignore ├── LICENSE ├── README.md ├── docs ├── screenshot-expanded.png └── screenshot.png ├── pyproject.toml ├── sample.bean ├── server.py ├── server_test.py └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanto/beanquery-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanto/beanquery-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanto/beanquery-mcp/HEAD/README.md -------------------------------------------------------------------------------- /docs/screenshot-expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanto/beanquery-mcp/HEAD/docs/screenshot-expanded.png -------------------------------------------------------------------------------- /docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanto/beanquery-mcp/HEAD/docs/screenshot.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanto/beanquery-mcp/HEAD/pyproject.toml -------------------------------------------------------------------------------- /sample.bean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanto/beanquery-mcp/HEAD/sample.bean -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanto/beanquery-mcp/HEAD/server.py -------------------------------------------------------------------------------- /server_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanto/beanquery-mcp/HEAD/server_test.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanto/beanquery-mcp/HEAD/uv.lock --------------------------------------------------------------------------------