Set up SkillSea after installation and sync your first skills with Claude Code.
Prerequisites: SkillSea binary installed and available in your PATH. See the Installation Guide if you haven't installed it yet.
Add SkillSea to your project's .mcp.json file so Claude Code can communicate with it:
{
"mcpServers": {
"skillsea": {
"command": "skillsea",
"args": ["--transport", "stdio"],
"env": {
"NEO4J_URI": "bolt://your-neo4j-host:7687",
"NEO4J_USERNAME": "neo4j",
"NEO4J_PASSWORD": "your-password"
}
}
}
}If you have a SkillSea Cloud subscription, your Neo4j credentials are available in the Portal Dashboard. Use the connection string provided there.
Hooks enable automatic skill syncing. When you type a prompt, SkillSea finds and loads relevant skills before Claude processes it.
This installs two hooks: a UserPromptSubmit hook for skill syncing and a SessionStart hook for update notifications. Restart Claude Code after installing.
SkillSea works in trial mode without a license (fulltext search, up to 10 skills). Activate a license to unlock semantic search, Text2Cypher, more skills, and team features.
You can also set the license via environment variable: KEYGEN_LICENSE_KEY=YOUR_KEY. See Licensing & Tiers for details.
This checks your Neo4j connection and optionally warms up the embedding model for faster semantic search. You should see:
Open Claude Code in your project directory and start working. Skills will automatically sync based on your prompts.
.claude/skills/skillsea/SkillSea notifies you of updates automatically via the SessionStart hook. You can also check manually:
To update, re-run the install script. It will download and replace the current binary.