Claude Code Setup
The easiest way to use Yavy with Claude Code is the plugin. It installs the CLI, authenticates, and generates skills automatically. You can also use the CLI directly or connect via MCP.
Plugin Recommended
Handles everything: CLI installation, authentication, project selection, and skill generation.
claude code
/plugin marketplace add yavydev/claude-code
/plugin install yavy-docs@yavy
/yavy:initCLI
Manual setup if you prefer the command line.
terminal
npm install -g @yavydev/cli && yavy initterminal
yavy search "your query"MCP Configuration
For real-time search via the Model Context Protocol.
Claude Code
Quick Install
Run this command in your terminal to add the MCP server:
terminal
claude mcp add --transport http yavy https://yavy.dev/mcp/your-org/your-projector configure manually
.mcp.json
{
"mcpServers": {
"yavy": {
"type": "http",
"url": "https://yavy.dev/mcp/your-org/your-project"
}
}
}Manual Setup Steps
- 1Create or open the
.mcp.jsonfile in your project directory - 2Copy the configuration above and paste it into your
.mcp.jsonfile - 3Run
/mcpin Claude Code to verify the server is connected
Tip
The
.mcp.json file in your project directory makes the MCP server available to your team. Public sources work instantly; private sources prompt for OAuth 2.1 login.