Skip to main content
Glama

Agentic Tools MCP Server

by Pimzino

get_next_task_recommendation

Receive task recommendations based on dependencies, priorities, complexity, and project status to enhance workflow management and productivity. Optimize task selection with intelligent filtering and prioritization.

Instructions

Get intelligent recommendations for the next task to work on based on dependencies, priorities, complexity, and current project status. Smart task recommendation engine for optimal workflow management and productivity.

Input Schema

NameRequiredDescriptionDefault
considerComplexityNoWhether to factor in task complexity for recommendations
excludeBlockedNoWhether to exclude blocked tasks from recommendations
maxRecommendationsNoMaximum number of task recommendations to return
preferredTagsNoPreferred task tags to prioritize in recommendations
projectIdNoFilter recommendations to a specific project
workingDirectoryYesThe full absolute path to the working directory where data is stored. MUST be an absolute path, never relative. Windows: "C:\Users\username\project" or "D:\projects\my-app". Unix/Linux/macOS: "/home/username/project" or "/Users/username/project". Do NOT use: ".", "..", "~", "./folder", "../folder" or any relative paths. Ensure the path exists and is accessible before calling this tool. NOTE: When server is started with --claude flag, this parameter is ignored and a global user directory is used instead.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "considerComplexity": { "default": true, "description": "Whether to factor in task complexity for recommendations", "type": "boolean" }, "excludeBlocked": { "default": true, "description": "Whether to exclude blocked tasks from recommendations", "type": "boolean" }, "maxRecommendations": { "default": 3, "description": "Maximum number of task recommendations to return", "maximum": 10, "minimum": 1, "type": "number" }, "preferredTags": { "description": "Preferred task tags to prioritize in recommendations", "items": { "type": "string" }, "type": "array" }, "projectId": { "description": "Filter recommendations to a specific project", "type": "string" }, "workingDirectory": { "description": "The full absolute path to the working directory where data is stored. MUST be an absolute path, never relative. Windows: \"C:\\Users\\username\\project\" or \"D:\\projects\\my-app\". Unix/Linux/macOS: \"/home/username/project\" or \"/Users/username/project\". Do NOT use: \".\", \"..\", \"~\", \"./folder\", \"../folder\" or any relative paths. Ensure the path exists and is accessible before calling this tool. NOTE: When server is started with --claude flag, this parameter is ignored and a global user directory is used instead.", "type": "string" } }, "required": [ "workingDirectory" ], "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Pimzino/agentic-tools-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server