Skip to main content
Glama
brysontang

DeltaTask MCP Server

by brysontang

search_tasks

Locate tasks by title, description, or tags using query-based search. Integrates with DeltaTask MCP Server for efficient task management and organization.

Instructions

Search tasks by title, description, or tags.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYes

Implementation Reference

  • server.py:26-30 (handler)
    The MCP tool handler function for 'search_tasks'. It is registered via the @mcp.tool() decorator and delegates the search logic to TaskService.search(query).
    @mcp.tool() async def search_tasks(query: str) -> list[dict[str, Any]]: """Search tasks by title, description, or tags.""" return service.search(query)
  • Supporting method in TaskService that performs the search by querying the repository and recursively adding subtasks to results.
    def search(self, query: str) -> List[Dict[str, Any]]: """Search tasks and return matches.""" results = self.repository.search_todos(query) # Add subtasks for task in results: self._recursively_add_subtasks(task) return results

Other Tools

Related Tools

Latest Blog Posts

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/brysontang/DeltaTask'

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