NavigationTap to open

MCP Tool

Integrate infaza with Model Context Protocol to enable model-aware memory retrieval and actions directly from your LLM runtime.

MCPIntegrations

Installation

Setup
# Example MCP client installation steps
npm install @infaza/sdk

export infaza_API_KEY="sk_dev_abc123"

Configuration

Tool Schema
{
  "name": "infaza",
  "description": "Access infaza memories",
  "methods": [
    { "name": "memories.create", "params": {"content": {"text": "string"}} },
    { "name": "memories.get", "params": {"memory_id": "string"} },
    { "name": "search.semantic", "params": {"query": "string", "limit": 10} }
  ]
}

Usage

Prompt Example
Use the "infaza" tool to create a memory with text: "Project kickoff complete" and then fetch it back to confirm.