Metadata-Version: 2.4
Name: cumulus-knowledge
Version: 0.1.0
Summary: AXI-compatible Python SDK and MCP server for Cumulus Knowledge
Project-URL: Homepage, https://www.npmjs.com/package/cumulus-knowledge
Project-URL: Repository, https://github.com/cumulus-knowledge/cumulus-knowledge
Author: Cumulus Knowledge contributors
License-Expression: MIT
Keywords: agents,cli,knowledge-graph,mcp,sdk
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Indexing
Requires-Python: >=3.10
Provides-Extra: tui
Requires-Dist: textual>=6.0.0; extra == 'tui'
Description-Content-Type: text/markdown

# cumulus-knowledge

Python SDK for the local Cumulus Knowledge graph.

The SDK uses the `cumulus` binary by default. Set `CUMULUS_BIN` to point at another binary.

```python
from cumulus_knowledge import CumulusKnowledge

knowledge = CumulusKnowledge(root="Documents/rune")
knowledge.index(profile="all")
hits = knowledge.query("auth flow", budget=800)
```
