Resolves TOO-388 <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Low Risk** > Primarily metadata/dependency additions with no changes to core tool execution paths; risk is limited to potential packaging/import issues from the new `arcade-mcp-server` dependency. > > **Overview** > Adds `ToolMetadata` to tool decorators across the Bright Data, ClickHouse, MongoDB, Postgres, LinkedIn, Zendesk, and Math toolkits, specifying *behavior* (read-only/idempotency/destructive/open-world) and, where applicable, *service domain* classification. > > Updates each toolkit package to depend on `arcade-mcp-server` (plus local `uv` source wiring) and bumps toolkit versions accordingly; minor `__all__` ordering tweaks in Math/Zendesk are included. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 3bde3a061194e1d1b6a4e8a2ebd608b17984db4f. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
49 lines
1.3 KiB
Python
49 lines
1.3 KiB
Python
import math
|
|
from typing import Annotated
|
|
|
|
from arcade_mcp_server.metadata import Behavior, ToolMetadata
|
|
from arcade_tdk import tool
|
|
|
|
|
|
@tool(
|
|
metadata=ToolMetadata(
|
|
behavior=Behavior(
|
|
read_only=True,
|
|
destructive=False,
|
|
idempotent=True,
|
|
open_world=False,
|
|
),
|
|
),
|
|
)
|
|
def gcd(
|
|
a: Annotated[str, "First integer as a string"],
|
|
b: Annotated[str, "Second integer as a string"],
|
|
) -> Annotated[str, "The greatest common divisor of a and b as a string"]:
|
|
"""
|
|
Calculate the greatest common divisor (GCD) of two integers.
|
|
"""
|
|
return str(math.gcd(int(a), int(b)))
|
|
|
|
|
|
@tool(
|
|
metadata=ToolMetadata(
|
|
behavior=Behavior(
|
|
read_only=True,
|
|
destructive=False,
|
|
idempotent=True,
|
|
open_world=False,
|
|
),
|
|
),
|
|
)
|
|
def lcm(
|
|
a: Annotated[str, "First integer as a string"],
|
|
b: Annotated[str, "Second integer as a string"],
|
|
) -> Annotated[str, "The least common multiple of a and b as a string"]:
|
|
"""
|
|
Calculate the least common multiple (LCM) of two integers.
|
|
Returns "0" if either integer is 0.
|
|
"""
|
|
a_int, b_int = int(a), int(b)
|
|
if a_int == 0 or b_int == 0:
|
|
return "0"
|
|
return str(abs(a_int * b_int) // math.gcd(a_int, b_int))
|