AI Tools
Based on Stephen R. Covey's Time Management Matrix with AI analysis to help users analyze and optimize task priorities
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/time-management-matrix' \
-H 'Content-Type: application/json' \
-d '{"urgentImportant":"Enter important and urgent tasks, one per line...","notUrgentImportant":"Enter important but not urgent tasks, one per line...","urgentNotImportant":"Enter urgent but not important tasks, one per line...","notUrgentNotImportant":"Enter not urgent and not important tasks, one per line...","workContext":"general","timeFrame":"week"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/time-management-matrix| Name | Type | Required | Description |
|---|---|---|---|
| urgentImportant | textarea | No | Contains tasks with crisis and urgency, such as customer complaints, emergencies, and soon-to-expire tasks. These tasks must be handled immediately. |
| notUrgentImportant | textarea | No | Involves personal growth, long-term planning, preventive measures, such as building relationships, training, health management, and risk prevention. This is the most time-consuming and important area, so it should be prioritized and scheduled accordingly. |
| urgentNotImportant | textarea | No | Many interrupting tasks, such as impromptu customers, frequent phone calls, and some unimportant meetings. The handling principle is to delegate as much as possible or handle when resources are limited. |
| notUrgentNotImportant | textarea |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-time-management-matrix": {
"name": "time-management-matrix",
"description": "Based on Stephen R. Covey's Time Management Matrix with AI analysis to help users analyze and optimize task priorities",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=time-management-matrix",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "time-management-matrix",
"arguments": {
"urgentImportant": "Enter important and urgent tasks, one per line...",
"notUrgentImportant": "Enter important but not urgent tasks, one per line...",
"urgentNotImportant": "Enter urgent but not important tasks, one per line...",
"notUrgentNotImportant": "Enter not urgent and not important tasks, one per line...",
"workContext": "general",
"timeFrame": "week"
}
}
}| No |
| Consumes time and has no value, such as meaningless chat, online distractions, or phone screens. Try to reduce or avoid doing these activities. |
| workContext | select | No | — |
| timeFrame | select | No | — |
Stream result
data: {"chunk": "data: processed content 1", "type": "stream"}
data: {"chunk": "data: processed content 2", "type": "stream"}
data: {"type": "done"}Questions or issues? Contact [email protected]