organize imports in mcp client.

This commit is contained in:
2026-05-13 09:03:27 -04:00
parent ae2227fdd4
commit 82120060ba
+9 -12
View File
@@ -52,21 +52,21 @@ See Also:
#MCP-style file context tools for manual_slop. #MCP-style file context tools for manual_slop.
from __future__ import annotations from __future__ import annotations
import ast
import asyncio import asyncio
import json import json
from src import models import os
import re as _re
import subprocess
from html.parser import HTMLParser
from pathlib import Path from pathlib import Path
from typing import Optional, Callable, Any, cast from typing import Optional, Callable, Any, cast
import os
import ast
import subprocess
from src import summarize
from src import outline_tool
from src import beads_client
import urllib.request import urllib.request
import urllib.parse import urllib.parse
from html.parser import HTMLParser from src import beads_client
import re as _re from src import models
from src import outline_tool
from src import summarize
# ------------------------------------------------------------------ mutating tools sentinel # ------------------------------------------------------------------ mutating tools sentinel
@@ -2186,6 +2186,3 @@ MCP_TOOL_SPECS: list[dict[str, Any]] = [
] ]
TOOL_NAMES: set[str] = {t['name'] for t in MCP_TOOL_SPECS} TOOL_NAMES: set[str] = {t['name'] for t in MCP_TOOL_SPECS}