Task Management for the AI Era
Let AI assistants and automation tools manage your tasks directly via REST API
MCP Server AvailableMCP Server
Install glintlint-mcp to manage your tasks with Claude Desktop and Cursor
{
"mcpServers": {
"glintlint": {
"command": "npx",
"args": ["-y", "glintlint-mcp"],
"env": {
"GLINTLINT_API_KEY": "<YOUR_API_KEY>"
}
}
}
}{
"mcpServers": {
"glintlint": {
"command": "npx",
"args": ["-y", "glintlint-mcp@latest"],
"env": {
"GLINTLINT_API_KEY": "your_api_key_here",
"GLINTLINT_BASE_URL": "https://glintlint.com"
}
}
}
}复制后粘贴到 OpenClaw 的 MCP 配置文件中
Glintlint Skill
AI 助手 Skill,基于 GTD 方法论,提供晨间规划、晚间复盘、任务捕获等智能场景。
Claude Code 安装
Windows PowerShell:
irm https://glintlint.com/install-claude.ps1 | iexLinux/Mac:
curl -sSL https://glintlint.com/install-claude.sh | bashOpenClaw 安装
Windows PowerShell:
irm https://glintlint.com/install-openclaw.ps1 | iexLinux/Mac:
curl -sSL https://glintlint.com/install-openclaw.sh | bash💡 使用自定义配置路径?
如果你的配置文件不在标准位置,请参考手动安装步骤进行配置。
What You Can Do
AI Assistant Integration
Let Claude, ChatGPT, and other AI assistants create, query, and manage your tasks directly
Workflow Automation
Automatically create and update tasks via tools like Zapier, n8n, and more
Custom Integrations
Build your own tools and integrate Glintlint into your workflow
Quick Start
Authentication
Authenticate with your API key in the Authorization header
Authorization: Bearer glint_your_api_key_hereAPI Endpoints
| Method | Endpoint | Permission Scopes | Description |
|---|---|---|---|
| GET | /api/v1/tasks | tasks:read | List tasks |
| POST | /api/v1/tasks | tasks:write | Create a task |
| PATCH | /api/v1/tasks/:id | tasks:write | Update a task |
| DELETE | /api/v1/tasks/:id | tasks:write | Delete a task |
| GET | /api/v1/groups | groups:read | List groups |
| POST | /api/v1/groups | groups:write | Create a group |
| GET | /api/v1/diary | diary:read | List diary entries |
| POST | /api/v1/diary | diary:write | Create a diary entry |
| GET | /api/v1/diary/:id | diary:read | Get a diary entry |
| PATCH | /api/v1/diary/:id | diary:write | Update a diary entry |
| DELETE | /api/v1/diary/:id | diary:write | Delete a diary entry |
| GET | /api/v1/stats | stats:read | Get statistics |
| GET | /api/v1/settings | settings:read | Get user settings |
Rate Limits
60 requests per minute per user, up to 5 active API keys per user
Code Examples
curl -X GET "https://glintlint.com/api/v1/tasks?date=2026-02-27" \
-H "Authorization: Bearer glint_your_api_key_here"Ready to Get Started?
Sign up for Glintlint and create your first API key in Settings