mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-07-12 22:42:13 +02:00
14 lines
369 B
Python
14 lines
369 B
Python
|
|
"""Tool-call policy hints shared across scraper tools."""
|
||
|
|
|
||
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
from mcp.types import ToolAnnotations
|
||
|
|
|
||
|
|
SCRAPE = ToolAnnotations(
|
||
|
|
readOnlyHint=False, destructiveHint=False, idempotentHint=False, openWorldHint=True
|
||
|
|
)
|
||
|
|
|
||
|
|
READ_RUNS = ToolAnnotations(
|
||
|
|
readOnlyHint=True, destructiveHint=False, idempotentHint=True, openWorldHint=False
|
||
|
|
)
|