Getting Started

Deploy Quoth v2.0

Set up AI Memory for Claude in under 2 minutes. Local-first storage with bidirectional learning.

Plugin Install (Recommended)

MCP + Hooks + Skills

Install the complete Quoth v2.0 plugin with AI Memory features. This bundles the MCP server, session hooks, /quoth-init skill, and the quoth-memory subagent.

terminal
# 1. Add the marketplace (one time)
/plugin marketplace add Montinou/quoth-mcp

# 2. Install the plugin
/plugin install quoth@quoth-marketplace

Two commands, full integration. The plugin auto-configures authentication and activates hooks on session start.

MCP Only (Alternative)

No Hooks

Install just the MCP server without hooks or skills. Use this if you prefer manual control or want to integrate Quoth with other clients.

terminal
# Add to Claude Code with OAuth
claude mcp add --transport http quoth https://quoth.ai-innovation.site/api/mcp

# Then run /mcp → select quoth → Authenticate
# Browser opens → Login → Done!

MCP-only gives access to all tools but requires manual invocation (no automatic hooks).

Public Demo (No Auth)

Try Quoth without authentication using the public read-only endpoint.

terminal
# Add public demo endpoint
claude mcp add --transport http quoth-public https://quoth.ai-innovation.site/api/mcp/public

No login required. Provides read-only access to the public knowledge base for testing and exploration.

CLI Commands

quoth loginAuthenticate and configure Claude Code
quoth logoutRemove authentication (keeps public access)
quoth statusShow current configuration
quoth helpShow help message

Manual Configuration

If you prefer manual setup, generate a token from the dashboard and configure directly:

claude_desktop_config.json
{
"mcpServers": {
"quoth": {
"url": "https://quoth.ai-innovation.site/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_TOKEN"
}
}
}
}

What You Get

quoth_search_indexSemantic search across documentation
public
quoth_read_docRead full document content
public
quoth_propose_updatePropose documentation updates
authenticated
quoth_guidelinesAdaptive context-relevant guidelines
authenticated
quoth_genesisPhased documentation bootstrapping
authenticated
quoth-memory subagentAI Memory interface for context queries
plugin
/quoth-init skillInitialize local AI Memory folder
plugin
/quoth-genesis skillBootstrap documentation from codebase
plugin