We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/brneto/fabric-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
"""
Configuration constants for the Fabric MCP Server.
This module contains all configuration values used throughout the application.
"""
from pathlib import Path
# Repository configuration
REPO_URL = "https://github.com/danielmiessler/fabric"
REPO_PATH = Path("/app/data/fabric")
# Directory paths within the repository
PATTERNS_DIRS = ["data/patterns", "patterns"]
STRATEGIES_DIRS = ["data/strategies", "strategies"]
# Local resources directories
MD_RESOURCES_DIR = Path(__file__).parent.parent / "resources" / "markdown" / "researches"
PDF_RESOURCES_DIR = Path(__file__).parent.parent / "resources" / "pdf" / "researches"