Metadata-Version: 2.4
Name: enhanced-cognee-client
Version: 1.0.0
Summary: Async Python client for the Enhanced Cognee MCP server (119 tools)
Author-email: "Vincent S. Pereira" <vincyspereira@gmail.com>
License: Apache-2.0
Project-URL: Homepage, https://github.com/vincentspereira/Enhanced-Cognee
Project-URL: Repository, https://github.com/vincentspereira/Enhanced-Cognee
Project-URL: Bug Tracker, https://github.com/vincentspereira/Enhanced-Cognee/issues
Keywords: cognee,mcp,memory,ai,llm,knowledge-graph
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software 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: Typing :: Typed
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: httpx>=0.27.0

# Enhanced Cognee Client

Async Python client for the [Enhanced Cognee MCP server](https://github.com/vincentspereira/Enhanced-Cognee) - a production-grade knowledge-graph memory layer with 119 MCP tools.

## Install

```bash
pip install enhanced-cognee-client
```

## Quick start

```python
import asyncio
from enhanced_cognee_client import EnhancedCogneeClient

async def main():
    async with EnhancedCogneeClient(host="localhost", port=37777) as client:
        # Store a memory
        result = await client.add_memory(
            content="Enhanced Cognee has 119 MCP tools",
            user_id="default",
            agent_id="my-agent",
        )
        print(result)

        # Search memories
        hits = await client.search_memories(query="MCP tools", limit=5)
        print(hits)

        # Check health
        status = await client.health()
        print(status)

asyncio.run(main())
```

## Key features

- Async-first (httpx under the hood)
- Never raises on network errors - returns error dicts instead
- Full type annotations, PEP 561 `py.typed` marker
- 16 public methods covering all major memory, GDPR, and lifecycle operations
- Compatible with Python 3.10+

## License

Apache-2.0
