Skip to main content
Glama
models.py925 B
""" Data models for RBT MCP Server. @REQ: REQ-rbt-mcp-tool @BP: BP-rbt-mcp-tool @TASK: TASK-001-PathResolver """ from dataclasses import dataclass from typing import Optional @dataclass class PathInfo: """ Path information for a resolved document. Attributes: project_id: Project identifier (e.g., 'knowledge-smith') feature_id: Optional feature identifier (e.g., 'rbt-mcp-tool') doc_type: Optional document type ('REQ', 'BP', 'TASK') file_path: Complete absolute file path is_rbt: True if RBT standard document, False if general document file_exists: True if the file exists at file_path (default: True for RBT documents) @REQ: REQ-rbt-mcp-tool @BP: BP-rbt-mcp-tool @TASK: TASK-001-PathResolver """ project_id: str feature_id: Optional[str] doc_type: Optional[str] file_path: str is_rbt: bool file_exists: bool = True

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/leo7nel23/KnowkedgeSmith-MCP'

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