A polished project management tool with workspace-wide lists, labels and custom fields, automations, assigned work, realtime collaboration, REST API and MCP support.
git clone https://github.com/happendev/Kanera{
"mcpServers": {
"kanera": {
"command": "node",
"args": ["/path/to/Kanera/dist/index.js"]
}
}
}MCP Servers overview
<div align="center">
# Kanera
**One clear view. Keep work moving.**
See what is assigned, what changed, what is blocked, and what has been completed across every project, client, and team.
[Start free](https://board.kanera.app/signup) · [Explore features](https://www.kanera.app/features) · [Read the docs](https://www.kanera.app/docs) · [Self-host Kanera](https://www.kanera.app/docs/self-host)
</div>

Kanera coordinates assigned, active, blocked, and completed work across projects, clients, and teams from one fast, polished workspace. It brings boards, structured tasks, notes, assignments, progress history, automation, and integrations into one focused system—more visibility than a basic Kanban board without the overhead of a heavyweight work suite.
Use the hosted service and get started in minutes, or self-host Kanera on your own infrastructure.
## One place for moving work forward
- **Plan in the view that fits.** Move between Kanban, List, Calendar, My Cards, Team Cards, Portfolio, and Work Done without duplicating work.
- **Keep the details with the task.** Add descriptions, comments, attachments, labels, custom fields, watchers, and assignable checklist items to cards.
- **See what needs attention.** Bring work assigned to you or your team together across every board, with search and filters when you need to narrow the view.
- **Make progress visible.** Review what was created, moved, completed, or checked off without chasing another status update.
- **Keep knowledge nearby.** Use personal, workspace, and board notes for decisions, processes, references, and project context.
- **Automate and integrate.** Handle repetitive updates with trigger-based automations, or connect other tools through the REST API, webhooks, and MCP server.
- **Work together in real time.** Stay current with live updates, mentions, activity history, configurable notifications, and controlled guest access.
## Workspaces and standalone boards
```text
Organisation
├─ Workspace
│ └─ Board
│ └─ Card
└─ Standalone board
└─ Card
```
Use a workspace when several boards should follow the same operating model. Lists, labels, and custom fields are configured once and used across all of its boards, keeping workflows and reporting consistent as projects grow.
That means a status like `In Review` or a field like `Client` has the same meaning everywhere—no rebuilding each board or reconciling mismatched setups later.
For work that does not need to share that setup, create a standalone board. It has its own lists, labels, custom fields, members, and settings, independently of your workspaces.
## See Kanera in action
### Home keeps today and the week in focus
Start with overdue work, items due today, the next seven days, and recent progress in one focused view. Jump back into active boards and scan the week without opening each project separately.

### Board view keeps the workflow visible
Move cards through shared lists while keeping labels, assignees, due dates, checklist progress, and visual covers in view.

### Table view turns live work into structured reports
Group and sort cards by list, assignee, due date, label, status, or custom field, then choose the columns that matter and edit any of them in place. Numeric custom fields support sum and average aggregates per group, with a second breakdown dimension for questions such as hours by client and work type.
Export the filtered result to Excel as a multi-sheet workbook containing card rows, spreadsheet-friendly summaries, and a readable report when aggregates are enabled.

### Notifications keep important changes together
Review mentions, assignments, comments, due-date changes, and other updates without losing the board context behind them.

### Rich cards keep the work and its context together
Descriptions, custom fields, checklists, due dates, comments, attachments, and activity all live in one focused card view.

### Team Cards brings assigned work together across boards
Use My Cards, Team Cards, and Portfolio to review work across organisations, workspaces, and boards, then group and filter it without losing its source context.

### Work Done shows what actually moved forward
Review a daily history of cards created, moved, and completed, plus finished checklist items. Use it on a board, My Cards, or Team Cards for standups, async updates, progress reviews, and client check-ins.

### Portfolio rolls work up without losing its source
Review active, overdue, upcoming, unassigned, and completed work across organisations, workspaces, and boards from one reporting view.

Explore the full product tour at [kanera.app/features](https://www.kanera.app/features).
## Move to Kanera without starting over
Kanera includes a guided Trello importer. Upload one board JSON export, map its lists, fields, and members, review the result, then confirm a controlled one-time import. Kanera can preserve attachment links and copy supported uploaded files when Trello is connected for the import. Your original Trello board stays unchanged, and later Trello changes are not synced automatically.
For Jira, ClickUp, Asana, monday.com, Notion, Linear, or an internal system, there is no native importer today. Start with one representative project so the source structure, mappings, users, history, and attachments can be reviewed before scoping an API-assisted migration.
- [Import from Trello](https://www.kanera.app/trello-migration)
- [Explore migration options](https://www.kanera.app/migration)
## Hosted or self-hosted
**Hosted Kanera** is the simplest way to get started. New accounts include a 30-day Pro trial with no card required; teams can then stay on Basic or upgrade to Pro. Pro includes email support, typically within one business day. See [current pricing](https://www.kanera.app/pricing).
**Self-hosted Kanera** includes the project-management features without per-seat charges. You control the infrastructure, storage, maintenance, and backups.
- [Self-hosting guide](https://www.kanera.app/docs/self-host)
- [Docker deployment](DEPLOY.md)
- [Dokploy deployment](DOKPLOY_DEPLOY.md)
## For developers
Kanera is a pnpm monorepo built with Angular 21, Fastify 5, Socket.IO 4, PostgreSQL 18, Drizzle ORM, and Valkey.
For AI tools and automated research, see the [LLM-readable documentation index](https://www.kanera.app/docs/llms.txt).
```text
apps/api/ Fastify API, worker, public API, and migrations
apps/web/ Angular web application
apps/mcp/ MCP server for AI clients
packages/shared/ Shared schema, DTOs, events, and workspace defaults
docker/ Local and production support files
```
### Local setup
You will need Node.js 24, pnpm 11 (usually through `corepack enable`), and Docker.
```bash
pnpm install
cp .env.example .env
pnpm dev:db
pnpm db:migrate
pnpm dev
```
Open <http://localhost:4200>.
The example environment uses PostgreSQL on `localhost:5433` and Valkey on `localhost:6379`. Replace `JWT_SECRET` and `MEDIA_SIGNING_SECRET` with unique random values before exposing the application outside your machine. See `.env.full.example` for optional settings and defaults.
To load a realistic demo workspace:
```bash
pnpm dev:db:reset:seed
```
Seed account details are documented in [dev-db-seed-content/README.md](dev-db-seed-content/README.md).
### Useful commands
```bash
pnpm dev # API :3000 + worker :3003 + web :4200
pnpm dev:public-api # Public integration API on :3001
pnpm dev:mcp # MCP server on :3002
pnpm dev:db # Start local PostgreSQL and Valkey
pnpm dev:db:down # Stop local database services
pnpm db:generate # Generate Drizzle migrations
pnpm db:migrate # Apply pending migrations
pnpm build # Build and type-check all packages
pnpm lint # Type-check and lint all packages
pnpm test # Run unit and integration test suites
pnpm test:api # Run API unit and route tests
pnpm test:api:integration # Run API integration tests with isolated PostgreSQL
```
### Architecture at a glance
- **Flexible board model:** workspaces share lists, labels, and custom fields across their boards, while standalone boards keep their configuration isolated.
- **Realtime collaboration:** REST is the write path and Socket.IO fans out typed events to connected clients.
- **Durable events:** board- and workspace-scoped events are recorded in an outbox for cross-process realtime delivery and webhooks.
- **Integrations:** workspace API keys support external tools without exposing user credentials.
- **Agent-native MCP:** OAuth-capable AI clients can connect with short-lived tokens, structured tool results, explicit safety annotations, and auditable access.
Hosted MCP clients connect to `https://mcp.kanera.app/mcp`. See the [AI and MCP guide](https://www.kanera.app/docs/ai-mcp) fWhat people ask about Kanera
What is happendev/Kanera?
+
happendev/Kanera is mcp servers for the Claude AI ecosystem. A polished project management tool with workspace-wide lists, labels and custom fields, automations, assigned work, realtime collaboration, REST API and MCP support. It has 6 GitHub stars and was last updated today.
How do I install Kanera?
+
You can install Kanera by cloning the repository (https://github.com/happendev/Kanera) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is happendev/Kanera safe to use?
+
happendev/Kanera has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.
Who maintains happendev/Kanera?
+
happendev/Kanera is maintained by happendev. The last recorded GitHub activity is from today, with 0 open issues.
Are there alternatives to Kanera?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy Kanera to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/happendev-kanera)<a href="https://claudewave.com/repo/happendev-kanera"><img src="https://claudewave.com/api/badge/happendev-kanera" alt="Featured on ClaudeWave: happendev/Kanera" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
The fastest path to AI-powered full stack observability, even for lean teams.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!