Spaces:
Sleeping
Sleeping
File size: 8,769 Bytes
1e6a9db |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 |
"""FastMCP server exposing vault and indexing tools."""
from __future__ import annotations
import logging
import os
import time
from typing import Any, Dict, List, Optional
from pathlib import Path
from dotenv import load_dotenv
from fastmcp import FastMCP
from pydantic import Field
# Load environment variables from the backend/.env file regardless of CWD
ENV_PATH = Path(__file__).resolve().parents[2] / ".env"
load_dotenv(dotenv_path=ENV_PATH)
from ..services import IndexerService, VaultNote, VaultService
from ..services.auth import AuthError, AuthService
try:
from fastmcp.server.http import _current_http_request # type: ignore
except ImportError: # pragma: no cover
_current_http_request = None
logger = logging.getLogger(__name__)
mcp = FastMCP(
"obsidian-docs-viewer",
instructions=(
"Multi-tenant vault tools. STDIO uses user_id 'local-dev'; HTTP mode must validate each "
"request with JWT.sub. Note paths must be relative '.md' ≤256 chars without '..' or '\\'. "
"Frontmatter is YAML: tags are string arrays and 'version' is reserved. Notes must be ≤1 MiB; "
"writes refresh created/updated timestamps and synchronously update the search index; deletes "
"clear index rows and backlinks. Wikilinks use [[...]] slug matching (prefer same folder, else "
"lexicographic). Search ranking = bm25(title*3, body*1) + recency bonus (+1 ≤7d, +0.5 ≤30d)."
),
)
vault_service = VaultService()
indexer_service = IndexerService()
auth_service = AuthService()
def _current_user_id() -> str:
"""Resolve the acting user ID (local mode defaults to local-dev)."""
# HTTP transport (hosted) uses Authorization headers
if _current_http_request is not None:
try:
request = _current_http_request.get() # type: ignore[call-arg]
except LookupError:
request = None
if request is not None:
header = request.headers.get("Authorization")
if not header:
raise PermissionError("Authorization header required")
scheme, _, token = header.partition(" ")
if scheme.lower() != "bearer" or not token:
raise PermissionError("Authorization header must be 'Bearer <token>'")
try:
payload = auth_service.validate_jwt(token)
except AuthError as exc:
raise PermissionError(exc.message) from exc
os.environ.setdefault("LOCAL_USER_ID", payload.sub)
return payload.sub
# STDIO / local fall back
return os.getenv("LOCAL_USER_ID", "local-dev")
def _note_to_response(note: VaultNote) -> Dict[str, Any]:
return {
"path": note["path"],
"title": note["title"],
"metadata": dict(note.get("metadata") or {}),
"body": note.get("body", ""),
}
@mcp.tool(
name="list_notes",
description="List notes in the vault (optionally scoped to a folder).",
)
def list_notes(
folder: Optional[str] = Field(
default=None,
description="Optional relative folder (trim '/' ; no '..' or '\\').",
),
) -> List[Dict[str, Any]]:
start_time = time.time()
user_id = _current_user_id()
notes = vault_service.list_notes(user_id, folder=folder)
duration_ms = (time.time() - start_time) * 1000
logger.info(
"MCP tool called",
extra={
"tool_name": "list_notes",
"user_id": user_id,
"folder": folder or "(root)",
"result_count": len(notes),
"duration_ms": f"{duration_ms:.2f}",
},
)
return [
{
"path": entry["path"],
"title": entry["title"],
"last_modified": entry["last_modified"].isoformat(),
}
for entry in notes
]
@mcp.tool(name="read_note", description="Read a Markdown note with metadata and body.")
def read_note(
path: str = Field(
..., description="Relative '.md' path ≤256 chars (no '..' or '\\')."
),
) -> Dict[str, Any]:
start_time = time.time()
user_id = _current_user_id()
note = vault_service.read_note(user_id, path)
duration_ms = (time.time() - start_time) * 1000
logger.info(
"MCP tool called",
extra={
"tool_name": "read_note",
"user_id": user_id,
"note_path": path,
"duration_ms": f"{duration_ms:.2f}",
},
)
return _note_to_response(note)
@mcp.tool(
name="write_note",
description="Create or update a note. Automatically updates frontmatter timestamps and search index.",
)
def write_note(
path: str = Field(
..., description="Relative '.md' path ≤256 chars (no '..' or '\\')."
),
body: str = Field(..., description="Markdown body ≤1 MiB."),
title: Optional[str] = Field(
default=None,
description="Optional title override; otherwise frontmatter/H1/filename is used.",
),
metadata: Optional[Dict[str, Any]] = Field(
default=None,
description="Optional frontmatter dict (tags arrays of strings; 'version' reserved).",
),
) -> Dict[str, Any]:
start_time = time.time()
user_id = _current_user_id()
note = vault_service.write_note(
user_id,
path,
title=title,
metadata=metadata,
body=body,
)
indexer_service.index_note(user_id, note)
duration_ms = (time.time() - start_time) * 1000
logger.info(
"MCP tool called",
extra={
"tool_name": "write_note",
"user_id": user_id,
"note_path": path,
"duration_ms": f"{duration_ms:.2f}",
},
)
return {"status": "ok", "path": path}
@mcp.tool(name="delete_note", description="Delete a note and remove it from the index.")
def delete_note(
path: str = Field(
..., description="Relative '.md' path ≤256 chars (no '..' or '\\')."
),
) -> Dict[str, str]:
start_time = time.time()
user_id = _current_user_id()
vault_service.delete_note(user_id, path)
indexer_service.delete_note_index(user_id, path)
duration_ms = (time.time() - start_time) * 1000
logger.info(
"MCP tool called",
extra={
"tool_name": "delete_note",
"user_id": user_id,
"note_path": path,
"duration_ms": f"{duration_ms:.2f}",
},
)
return {"status": "ok"}
@mcp.tool(
name="search_notes",
description="Full-text search with snippets and recency-aware scoring.",
)
def search_notes(
query: str = Field(..., description="Non-empty search query (bm25 + recency)."),
limit: int = Field(50, ge=1, le=100, description="Result cap between 1 and 100."),
) -> List[Dict[str, Any]]:
start_time = time.time()
user_id = _current_user_id()
results = indexer_service.search_notes(user_id, query, limit=limit)
duration_ms = (time.time() - start_time) * 1000
logger.info(
"MCP tool called",
extra={
"tool_name": "search_notes",
"user_id": user_id,
"query": query,
"limit": limit,
"result_count": len(results),
"duration_ms": f"{duration_ms:.2f}",
},
)
return [
{
"path": row["path"],
"title": row["title"],
"snippet": row["snippet"],
}
for row in results
]
@mcp.tool(
name="get_backlinks", description="List notes that reference the target note."
)
def get_backlinks(
path: str = Field(
..., description="Relative '.md' path ≤256 chars (no '..' or '\\')."
),
) -> List[Dict[str, Any]]:
user_id = _current_user_id()
backlinks = indexer_service.get_backlinks(user_id, path)
return backlinks
@mcp.tool(name="get_tags", description="List tags and associated note counts.")
def get_tags() -> List[Dict[str, Any]]:
user_id = _current_user_id()
return indexer_service.get_tags(user_id)
if __name__ == "__main__":
transport = os.getenv("MCP_TRANSPORT", "stdio").strip().lower()
# Configure HTTP transport with custom port if specified
if transport == "http":
# Prefer MCP_PORT, then platform-provided PORT, with a sane default.
port = int(os.getenv("MCP_PORT"))
# Bind to all interfaces by default for hosted environments (HF Spaces).
host = os.getenv("MCP_HOST", "0.0.0.0")
logger.info(
"Starting MCP server",
extra={"transport": transport, "host": host, "port": port},
)
mcp.run(transport=transport, host=host, port=port)
else:
logger.info("Starting MCP server", extra={"transport": transport})
mcp.run(transport=transport)
|