Skip to main content
ClaudeWave

TaskLite MCP server — build a real backend from Claude, ChatGPT, Gemini, Cursor or VS Code: boards, data, automations, REST API and a ready-made admin

MCP ServersRegistry oficial0 estrellas0 forksTypeScriptMITActualizado today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 9/12/2026
Install in Claude Code / Claude Desktop
Method: NPX · -y
Claude Code CLI
claude mcp add tasklite-mcp -- npx -y -y
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "tasklite-mcp": {
      "command": "npx",
      "args": ["-y", "-y"],
      "env": {
        "TASKLITE_API_KEY": "<tasklite_api_key>",
        "TASKLITE_API_URL": "<tasklite_api_url>"
      }
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Detected environment variables
TASKLITE_API_KEYTASKLITE_API_URL
Casos de uso

Resumen de MCP Servers

# @tasklite/mcp

[![npm](https://img.shields.io/npm/v/@tasklite/mcp)](https://www.npmjs.com/package/@tasklite/mcp)
[![MCP Registry](https://img.shields.io/badge/MCP%20Registry-net.tasklite%2Fmcp-blue)](https://registry.modelcontextprotocol.io)
[![license](https://img.shields.io/npm/l/@tasklite/mcp)](./LICENSE)

**A backend and an admin for apps built by AI agents.** [tasklite.net](https://tasklite.net) · [docs](https://tasklite.net/docs)

Describe a system and get the thing behind it: a project with typed tables and
relations, rows, REST endpoints, an API key, and an admin interface the
business itself operates afterwards. From Claude Code, Claude Desktop, ChatGPT,
Gemini, Cursor or VS Code. Deploy a frontend onto it and hand the whole thing
over.

> **Not the CLI task manager.** There is an older, unrelated project also called
> TaskLite, [ad-si/TaskLite](https://github.com/ad-si/TaskLite) at
> [tasklite.org](https://tasklite.org), a command-line task manager. This is a
> different product from a different author: a hosted backend at
> **tasklite.net**, published as `@tasklite/mcp` and as `net.tasklite/mcp` in
> the MCP registry.

## The 48 tools

Every tool declares `readOnlyHint`, `destructiveHint` and `openWorldHint`, so a
client can tell what is safe to run unattended.

| Area | Tools |
| --- | --- |
| Account | `sign_up` `connect` `login` `disconnect` `connection_status` `list_organizations` `configure_external_access` |
| Structure | `create_project` `create_board` `create_column` `update_board` `update_column` `delete_board` `delete_column` `delete_project` `reorder_columns` `get_board_schema` `list_projects` `list_boards` `export_project` |
| Data | `query_items` `create_item` `update_item` `set_cell` `delete_item` `search` `fetch` |
| Comments | `list_comments` `add_comment` `update_comment` `delete_comment` |
| Apps and API | `build_backend` `create_app` `publish_app` `list_apps` `get_app_spec` `create_app_endpoint` `list_app_endpoints` `update_app_endpoint` `create_app_api_key` |
| Frontend hosting | `deploy_frontend` `list_deployments` `rollback_deployment` `get_frontend_prompt` |
| Automation and push | `create_automation` `list_automations` `push_status` `send_test_push` |

`build_backend` is the one to reach for first: it takes a description of a
system and creates the project, the boards, their typed columns including the
relations between them, sample rows, and a published REST API with a key, in
one call, instead of a dozen.

## Setup

Install the package (and Claude Code if you don't have it), then add the server
by its binary. That avoids a known Windows issue where `claude mcp add`
mis-parses `npx -y`.

```bash
npm install -g @anthropic-ai/claude-code @tasklite/mcp
claude mcp add tasklite -- tasklite-mcp
```

Add `-s user` to `claude mcp add` to make it available in every project
(`claude mcp add -s user tasklite -- tasklite-mcp`); the default scope is the
current project only.

Then tell Claude what you want to build. The `sign_up` tool creates your account, organization, and connection from the conversation (a strong random password is generated locally and never shown; use "forgot password" with your email for web access).

**Already have an account?** Create a key at TaskLite → Integrations → "Connect Claude Code" and use:

```bash
claude mcp add tasklite -e TASKLITE_API_KEY=tl_xxx -- tasklite-mcp
```

### Hosted (no install)

Point any MCP client at the hosted server; there is nothing to install locally:

```bash
claude mcp add --transport http tasklite https://mcp.tasklite.net/mcp \
  --header "Authorization: Bearer tl_xxx"
```

The hosted server is stateless: every request carries its own credential, so
one endpoint serves every account safely.

**Simplest of all: the connector.** In Claude (claude.ai or the desktop app),
Settings → Connectors → add TaskLite, or add it by address using the URL above.
You sign in once over OAuth; there is no key to create or store. Note that the
tools appear in a *new* chat, not in the conversation you were already in.

Optional env: `TASKLITE_API_URL` (default `https://api.tasklite.net`), `TASKLITE_APP_URL` (default `https://app.tasklite.net`).

## Other clients

One hosted server, every MCP client. Full setup notes: https://tasklite.net/docs/guides/connector-from-cursor-codex-desktop

- **Cursor**: [Add to Cursor](cursor://anysphere.cursor-deeplink/mcp/install?name=tasklite&config=eyJ1cmwiOiAiaHR0cHM6Ly9tY3AudGFza2xpdGUubmV0L21jcCJ9) or put `{"mcpServers":{"tasklite":{"url":"https://mcp.tasklite.net/mcp"}}}` in `.cursor/mcp.json`.
- **VS Code**: [Install in VS Code](vscode:mcp/install?%7B%22name%22%3A%20%22tasklite%22%2C%20%22type%22%3A%20%22http%22%2C%20%22url%22%3A%20%22https%3A//mcp.tasklite.net/mcp%22%7D) or `.vscode/mcp.json` with `{"servers":{"tasklite":{"type":"http","url":"https://mcp.tasklite.net/mcp"}}}`.
- **ChatGPT**: Settings → Connectors (developer mode) → add `https://mcp.tasklite.net/mcp`. The server implements `search` and `fetch`.
- **Gemini CLI**: `gemini extensions install https://github.com/shimon-ks/tasklite-mcp` (this repo ships `gemini-extension.json`), or add `httpUrl` + `oauth` to `~/.gemini/settings.json`.
- **OpenAI Responses API / Agents SDK, Gemini API**: pass the hosted URL with `Authorization: Bearer tl_…`.

## Typical flow (what Claude Code does)

1. `create_project` → `create_board` → `create_column` × N builds the schema.
2. `create_item` / `query_items` seed and inspect data.
3. `create_app` → `create_app_endpoint` (with exposedColumns + RLS) → `create_app_api_key` expose the REST surface for your frontend.
4. `get_app_spec` / `get_frontend_prompt` generate the frontend against it.
5. Every tool returns an `adminUrl`, the ready-made admin for the end client.

## Hosting your frontend

`deploy_frontend` puts a static frontend on `https://{slug}.tasklite.dev`.
No server, no hosting account, no CI to configure. Hand the site over in one
of three ways:

```
deploy_frontend(appId: "app-xxxxxx", files: [{ path: "index.html", content: "<!doctype html>…" }, { path: "app.js", content: "…" }])
deploy_frontend(appId: "app-xxxxxx", zipUrl: "https://github.com/you/site/releases/download/v1/dist.zip")
deploy_frontend(appId: "app-xxxxxx", dir: "./dist")
```

`files` is the path from ChatGPT or any hosted client: the assistant writes the
page and deploys it in the same turn. `zipUrl` takes an export from Lovable,
Bolt or a GitHub release. `dir` is for an MCP running on the machine with the
build output.

Hosted pages call the app API through the relative path `/api/{endpoint}`. The
hosting proxy attaches the app identity server-side, so the browser never
carries an API key. `list_deployments` shows the versions and
`rollback_deployment` points the live URL back at an earlier one.

## Security model

- The `tl_` key is exchanged for a short-lived JWT (`POST /public/v1/auth/session`); all calls run with the key owner's own permissions, never super-admin.
- App API keys belong in server-side env vars (Next.js API routes), never in browser code. Frontends hosted on `tasklite.dev` need no key at all.

## Development

```bash
npm install
npm run build
TASKLITE_API_KEY=tl_xxx TASKLITE_API_URL=http://localhost:3333 node dist/index.js
```

## License

MIT
ai-agentsbackend-as-a-servicechatgptclaudegeminigemini-cli-extensionmcpmcp-servermodel-context-protocol

Lo que la gente pregunta sobre tasklite-mcp

¿Qué es shimon-ks/tasklite-mcp?

+

shimon-ks/tasklite-mcp es mcp servers para el ecosistema de Claude AI. TaskLite MCP server — build a real backend from Claude, ChatGPT, Gemini, Cursor or VS Code: boards, data, automations, REST API and a ready-made admin Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-09-11.

¿Cómo se instala tasklite-mcp?

+

Puedes instalar tasklite-mcp clonando el repositorio (https://github.com/shimon-ks/tasklite-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar shimon-ks/tasklite-mcp?

+

Nuestro agente de seguridad ha analizado shimon-ks/tasklite-mcp y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene shimon-ks/tasklite-mcp?

+

shimon-ks/tasklite-mcp es mantenido por shimon-ks. La última actividad registrada en GitHub es del 2026-09-11, con 0 issues abiertos.

¿Hay alternativas a tasklite-mcp?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega tasklite-mcp en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: shimon-ks/tasklite-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/shimon-ks-tasklite-mcp)](https://claudewave.com/repo/shimon-ks-tasklite-mcp)
<a href="https://claudewave.com/repo/shimon-ks-tasklite-mcp"><img src="https://claudewave.com/api/badge/shimon-ks-tasklite-mcp" alt="Featured on ClaudeWave: shimon-ks/tasklite-mcp" width="320" height="64" /></a>

Más MCP Servers

Alternativas a tasklite-mcp