Getting Started

Deploy Quoth Server

Set up Quoth in your AI development workflow in under 2 minutes.

Quick Start

Public Demo

Get started immediately with the public demo. No authentication required.

terminal
# Install the CLI
npm install -g @quoth/mcp

# Add to Claude Code
claude mcp add quoth

This gives immediate access to search and read tools using the public knowledge base.

Authenticate for Private Projects

Unlock full features including private knowledge bases and documentation proposals.

terminal
# Run login command
quoth login

# Opens browser for authentication
# Copy the token and paste in terminal

After authentication, you get access to your private knowledge bases, the quoth_propose_update tool, and team collaboration features.

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_architect promptCode generation with pattern enforcement
public
quoth_auditor promptCode review with violation detection
public