kaneo
๐ฏ All you need. Nothing you don't. Open source project management that works for you, not against you.
Install / Use
claude mcp add usekaneo -- npx -y github:usekaneo/kaneoIf the server publishes to npm under a different name, use that package instead โ check the repo README.
MCP Server
Model Context Protocol server
Quality Score
Category
Project & Program ManagementSupported Platforms
Our assessment of kaneo
kaneo scores 91/100 on our quality scale, 2nd of 25 Project & Program Management skills we index (top 8%).
Its MCP Server is 7.7 KB long, well organised into 17 sections with 3 code examples: a thorough specification that gives an agent plenty to work with.
With 9,203 GitHub stars, it is one of the more widely adopted skills in the catalogue.
Maintenance, license and trust
- The repository was last updated today, so kaneo is actively maintained.
- Our last check on 2026-09-21 found the source still online.
- It is released under the MIT license, a permissive license that allows use, modification and commercial use with attribution.
- Its trust signals score 100/100, with no cautions. These come from repository metadata, not a code audit โ read the skill file before letting an agent act on it.
Safety scan
No issues foundOur scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands (1 minor note below). An AI review of the same text found nothing harmful.
- noteInstalls by piping a downloaded script into a shellline 62
curl -fsSL https://assets.kaneo.app/install.sh | sh
AI review by kimi-k2.7-code on 2026-09-24. Automated pattern scan on 2026-09-24. It catches known dangerous patterns, not every risk โ read a skill before letting an agent act on it.
kaneo compared with similar skills
All 4 of these similar skills score higher than kaneo; compare them before choosing.
| Skill | Score | Stars | Updated | Format |
|---|---|---|---|---|
| kaneo (this skill)by usekaneo | 91 | 9.2k | today | MCP Server |
| Agent-Reachby Panniantong | 100 | 85.4k | 10d ago | CLAUDE.md |
| headroomby headroomlabs-ai | 100 | 73.8k | today | CLAUDE.md |
| rufloby ruvnet | 100 | 73.3k | 1d ago | CLAUDE.md |
| CowAgentby zhayujie | 100 | 47.1k | today | CLAUDE.md |
Frequently asked questions
- How do I install kaneo?
- Run
claude mcp add usekaneo -- npx -y github:usekaneo/kaneo. The install tabs above show the steps for each supported agent. - Which AI agents does kaneo work with?
- It is written for Claude Code and Claude Desktop, as a MCP Server file. Other agents that read the same format can often use it too.
- Is kaneo safe to use?
- Our scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands (1 minor note below). An AI review of the same text found nothing harmful. It is MIT-licensed and scores 100/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
- Is kaneo still maintained?
- The repository was last updated today, so kaneo is actively maintained.
Skill content
View source on GitHubWhy Kaneo?
After years of using bloated, overcomplicated project management platforms that distracted from actual work, we built Kaneo to be different.
The problem with most tools isn't that they lack features, it's that they have too many. Every notification, every unnecessary button, every complex workflow pulls your team away from what matters: building great products.
We believe the best tools are invisible. They should amplify your team's natural workflow, not force you to adapt to theirs. Kaneo is built on the principle that less is more: every feature exists because it solves a real problem, not because it looks impressive in a demo.
What makes it different:
- Clean interface that focuses on your work, not the tool
- Self-hosted so your data stays yours
- Actually fast because we care about performance
- Open source with a permissive MIT license
Learn more about Kaneo's features and capabilities in our documentation.
Sponsors
Kaneo is open source. If you find it useful, consider sponsoring the project to help support ongoing development.
<!-- sponsors --><a href="https://github.com/danielsada"><img src="https://github.com/danielsada.png" width="60px" alt="User avatar: Daniel Sada" /></a><a href="https://github.com/randoneering"><img src="https://github.com/randoneering.png" width="60px" alt="User avatar: (justin)randoneering" /></a><a href="https://github.com/floreabogdan"><img src="https://github.com/floreabogdan.png" width="60px" alt="User avatar: Bogdan FLOREA" /></a><a href="https://github.com/meruw"><img src="https://github.com/meruw.png" width="60px" alt="User avatar: meri" /></a><a href="https://github.com/barbanet"><img src="https://github.com/barbanet.png" width="60px" alt="User avatar: Damiรกn Culotta" /></a><!-- sponsors -->Getting Started
One-Click Deployment with drim
For straightforward deployments, use drim - a CLI tool that handles everything for you:
curl -fsSL https://assets.kaneo.app/install.sh | sh
drim setup
That's it. Your Kaneo instance will be running with automatic HTTPS, database setup, and all services configured.
Perfect for quick deployments and production setups where you want things to just work.
Quick Start with Docker Compose
The fastest way to try Kaneo is with Docker Compose. This sets up Kaneo and PostgreSQL with a single Kaneo container:
services:
postgres:
image: postgres:16-alpine
env_file:
- .env
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "pg_isready -U kaneo -d kaneo"]
interval: 10s
timeout: 5s
retries: 5
kaneo:
image: ghcr.io/usekaneo/kaneo:latest
ports:
- "5173:5173"
env_file:
- .env
depends_on:
postgres:
condition: service_healthy
restart: unless-stopped
volumes:
postgres_data:
Save this as compose.yml, copy .env.sample to .env, uncomment KANEO_CLIENT_URL=http://localhost:5173, and set POSTGRES_PASSWORD=<password> and AUTH_SECRET=<output of openssl rand -hex 32>, run docker compose up -d, and open http://localhost:5173.
In Docker Compose, the bundled Kaneo container reaches PostgreSQL at the service hostname postgres.
If you run the API on your host instead of inside Compose, use localhost or set DATABASE_URL explicitly.
Important: See our full documentation for detailed setup instructions, environment variable configuration, and troubleshooting guides.
Development Setup
For development, see our Environment Setup Guide for detailed instructions on configuring environment variables and troubleshooting common issues like CORS problems.
Configuration
Kaneo requires several environment variables to be configured. The Docker Compose setup above handles the database automatically, but you'll need to configure environment variables for the API and web services.
For complete configuration instructions, including all required environment variables, database setup for non-Docker deployments, and advanced settings, see the documentation. Advanced deployments can still use the separate ghcr.io/usekaneo/api and ghcr.io/usekaneo/web images.
Kubernetes Deployment
If you're running Kubernetes, we provide a comprehensive Helm chart. Check out the Helm chart documentation for detailed installation instructions, production configuration examples, TLS setup, and more.
Development
Want to hack on Kaneo? See our Environment Setup Guide for detailed instructions on configuring environment variables and troubleshooting common issues like CORS problems.
Quick start:
# Clone and install dependencies
git clone https://github.com/usekaneo/kaneo.git
cd kaneo
pnpm install
# Create a .env file in the root with required environment variables
# See ENVIRONMENT_SETUP.md for detailed instructions
# Start development servers
pnpm dev
For contributing guidelines, code structure, and development best practices, check out our contributing guide and documentation.
MCP Server
Kaneo has an official MCP (Model Context Protocol) server, so AI tools like Claude, Cursor, and other MCP clients can manage your tasks, projects, and labels. Every instance ships a built-in HTTP MCP endpoint at /api/mcp, and for stdio clients there is the official @kaneo/mcp package on npm (npx -y @kaneo/mcp).
Community
- Discord - Chat with users and contributors
- GitHub Issues - Bug reports and feature requests
- Documentation - Detailed guides, API docs, and tutorials
Contributing
We're always looking for help, whether that's:
- Reporting bugs or suggesting features
- Improving documentation
- Contributing code
- Helping other users on Discord
Check out CONTRIBUTING.md for the details on how to get involved.
License
MIT License - see LICENSE for details.
<div align="center"> <img src="https://repobeats.axiom.co/api/embed/3e8367ec2b2350e4fc48662df33c81dac657b833.svg" alt="Repobeats analytics image" /> </div> <p align="center"> Built with โค๏ธ by the Kaneo team and <a href="#contributors">contributors</a> </p>
Related Skills
Agent-Reach
85.4kGive your AI agent eyes to see the entire internet. Read & search Twitter, Reddit, YouTube, GitHub, Bilibili, XiaoHongShu โ one CLI, zero API fees.
headroom
73.8kCompress tool outputs, logs, files, and RAG chunks before they reach the LLM. 20% fewer tokens for coding agents, 60-95% fewer tokens for JSON, same answers. Library, proxy, MCP server.
ruflo
73.3k๐ The original agent harness. Deploy intelligent multi-player swarms, coordinate autonomous workflows, and build conversational AI systems. Features adaptive memory, self-learning intelligence, federation, vector RAG integration, and native Claude Code / Codex / Hermes and many more Integrated
CowAgent
47.1kOpen-source super AI assistant & Agent Harness. Plans tasks, runs tools and skills, self-evolves with memory and knowledge. Multi-agent, multi-model, multi-channel. Lightweight, extensible, one-line install.
Languages
Trust signals
From repository metadata: license, adoption, age and documentation. Not a code audit โ see the Safety scan above for what the skill file itself contains.
