UNPKG

@mseep/atlas-mcp-server

Version:

A Model Context Protocol (MCP) server for ATLAS, a Neo4j-powered task management system for LLM Agents - implementing a three-tier architecture (Projects, Tasks, Knowledge) to manage complex workflows.

13 lines (12 loc) 468 B
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; /** * Register Task Resources * * This function registers resource endpoints for the Tasks entity * - GET atlas://tasks - List all tasks * - GET atlas://tasks/{taskId} - Get specific task by ID * - GET atlas://projects/{projectId}/tasks - List tasks for a specific project * * @param server The MCP server instance */ export declare function registerTaskResources(server: McpServer): void;