iai-mcp-opencode/src/iai_mcp/__init__.py
Areg Noya f6b876fbe7 Initial release: iai-mcp v0.1.0
Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: XNLLLLH <XNLLLLH@users.noreply.github.com>
2026-05-06 01:04:47 -07:00

19 lines
365 B
Python

"""IAI-MCP -- autistic-style persistent memory MCP server."""
from iai_mcp.types import (
MemoryRecord,
MemoryHit,
RecallResponse,
EdgeUpdate,
ReconsolidationReceipt,
TIER_ENUM,
)
__version__ = "0.1.0"
__all__ = [
"MemoryRecord",
"MemoryHit",
"RecallResponse",
"EdgeUpdate",
"ReconsolidationReceipt",
"TIER_ENUM",
]