toolscope
ToolScope
Mac上のすべてのツールをスキャンして、人間とAIエージェントの両方が検索できるようにします。
ToolScopeは、マシンにインストールされているGUIアプリケーションとCLIツール(Homebrew、npm、pipx、uv、/Applications、$PATH経由)を、ローカルのSQLiteデータベースにまとめます。このデータベースは、機能で検索してクリーンアップの棚卸しに使うことも、MCP経由でAIエージェントから参照することもできます。読み取り専用で、一切アンインストールしません。
なぜ
何をインストールしたかを忘れてしまう。 何年にもわたる
brew install、npm install -g、pipx installによって何百件ものエントリが積み重なります。brew listは使用の手がかりがまったくないテキストの壁にすぎません。思い出せるのはツール名でなくタスク。 「動画をトランスコードしたい」と思っても、それがffmpegだと出てこない。ToolScopeは名前だけでなく、説明文とAI生成の機能メモまで検索します。
AIエージェントにはマシンの状況が見えない。 コーディングエージェントがタスクを引き受けても「このMacは何ができるか」という問いに構造化された答えを持ちません。ToolScopeはそれをMCPツール呼び出し1回で返します。
Related MCP server: WEATHGARDS
機能
6つのソースを一度にスキャンして
~/.toolscope/toolscope.dbのSQLiteに保存。再スキャンはアップデート処理で既存の行を更新し、first_seenは保持される名前・手書きの説明・AI生成の説明にまたがった能力検索
冪等なzsh preexecフックによる使用状況の追跡(
usage.count、usage.last_used)。実際に使われていないものが分かりますローカルWebダッシュボード(React + TypeScript、UIフレームワークなし)。6つのビュー(概要カード、検索可能なツール一覧、未使用表示、使用統計(トップ20+30日トレンド)、初回ガイド、LLM設定)に加えて ⌘K コマンドパレットと詳細ドロワー
stdio MCPサーバー。エージェント連携用の3つのツールを搭載
マシン移行用のBrewfileエクスポート
doctorによる環境自己チェックOpenAI互換エンドポイントを使った、中国語の1行の機能説明(オプション)。プロバイダー/モデル/キーはダッシュボードのSettingsタブか
toolscope configで設定(0600でローカル保存、環境変数不要)ダッシュボードを包む薄型Electronシェル(オプション)
クイックスタート
macOSとPython 3.12+が必要です。
pipx install toolscope
toolscope scan # ~13s; prints per-source counts; missing sources count 0
toolscope list # everything recorded so far
toolscope search video --json # capability search; parseable JSON envelope
toolscope serve # dashboard at http://127.0.0.1:8421CLIリファレンス
一覧系コマンドはデフォルトで人間が読みやすいテキストを出力し、--json を付けると {"items": [...], "total": N} というJSONエンベロープを出力します。
コマンド | 動作 |
| 6つすべてのソースをスキャンし、DBにUPSERTして、ソースごとの件数を表示 |
| 記録されているすべてのツールを一覧表示( |
| 名前 / description / ai_descriptionを横断検索 |
| 単一のツール詳細。見つからない場合は非ゼロ終了 |
| APIとダッシュボードを配信。デフォルトのポートは8421 |
|
|
| stdio MCPサーバーを起動 |
| zshのprem実行スニペットを出力 |
| スニペットを |
| Brewfile(casks + formulaeセクション)を生成 |
| 環境チェック:ソースマネージャー、フロントエンドビルド、DBの健全性 |
| LLM設定を表示(キーはマスク表示)。サブコマンド |
| 空のai_descriptionを埋めるオプションのLLMパス。設定は |
使用状況の追跡:
toolscope hook-install # run once; new shells log each command to ~/.toolscope/usage.logマシン移行:
toolscope scan
toolscope export --out Brewfile
brew bundle --file=BrewfileAIエージェント向け
同じJSONコントラクトに対する2つの接続面があります。
CLI。 一覧系コマンドは --json を受け付けて {"items": [...], "total": N} を出力し、単一オブジェクトを返すコマンドはそのオブジェクトを直接出力します。ツールオブジェクトは id, name, kind, version, path, origin, description, ai_description, usage:{count,last_used}|null の形式です。
toolscope search video --json
toolscope info ffmpeg --json
toolscope stats --jsonHTTP API。 toolscope serve は同じデータをJSONで 127.0.0.1:8421 に公開し、一覧系エンドポイントはすべて上記のエンベロープを返します:/api/tools、/api/tools/{id}、/api/search?q=、/api/stats、/api/usage/log、/api/usage/stats、/api/export(Brewfileダウンロード)、/api/doctor、/api/hook/snippet、そして POST /api/scan。LLM設定もエージェントから管理可能です:GET/PUT /api/settings、GET /api/settings/providers、POST /api/settings/test。APIキーは常にマスクした形でのみ返され、完全な形では返されません。
MCP。 先にオプションをインストールしてください:pipx install "toolscope[mcp]"。次にクライアントにサーバーを登録します — Claude Codeスタイルの mcpServers 設定:
{
"mcpServers": {
"toolscope": {
"command": "toolscope",
"args": ["mcp"]
}
}
}以下3つのツールが公開されています:
search_tools(query, kind?)— 機能検索(「このマシンでXができますか?」)。上記のエンベロープを返すget_tool(name)— 単一のツールオブジェクト、存在しない場合はテキストnullを返す(エラーではなく正常な結果)machine_stats()—{total, by_kind, never_used}
スクリーンショット
最初の実機キャプチャまで本プレースホルダーとして保留しています。予定ショットは docs/screenshots.md にあります。
仕組み
scan は6つのソースから収集し、(name, kind, origin) をキーとして ~/.toolscope/ 配下のSQLiteにUPSERTします。後でシステムから消えたエントリは削除せずに保持します。
ソース | kind値 | 収集方法 | マネージャーなし |
| app | Info.plistの解析 | macOSでは該当なし |
Homebrew | formula, cask |
| スキップし0件として計上 |
| binary | PATHエントリ内の実行可能ファイル | 空結果 |
npmグローバルパッケージ | npm |
| スキップし0件として計上 |
pipx環境 | pipx |
| スキップし0件として計上 |
uvツール | uv |
| スキップし0件として計上 |
マネージャーバイナリがないソースがあってもスキャンが失敗することはありません。その場合はスキップされ、0件として報告されます。
開発
git clone <repo-url> && cd toolscope
python3.12 -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"
python -m pytest -q # backend suite must be green
cd frontend && npm install && npm run build # dashboard build; tsc must be clean
cd .. && toolscope serve # serves frontend/dist at :8421オプションのデスクトップシェル:desktop/ を参照(npm install && npm start)。
ライセンス
日本語説明
ToolScopeは、Macに長年積み重なった数十個のGUIアプリと、数十個のCLIツールをローカルSQLiteライブラリ(~/.toolscope/)にまとめ、3つの質問に答えます:何を入れたか / 何ができるか / 使ったか。読み取り専用で、何もアンインストールしません。
pipx install toolscope # 需 MCP 时:pipx install "toolscope[mcp]"
toolscope scan # 全量扫描六来源,输出各来源计数;缺失来源计 0 跳过
toolscope search 视频 --json # 能力搜索:跨名称与描述匹配,支持中文关键词
toolscope serve # 浏览器打开 http://127.0.0.1:8421 看板
toolscope config # 可选:配置 LLM 供应商/模型/Key(看板「设置」页签同源,Key 打码 0600 存储)
toolscope hook-install # 可选:安装 zsh 钩子记录使用度(幂等)
toolscope export --out Brewfile # 迁移新机时配合 brew bundle 还原环境ダッシュボードには6つのビュー(概要 / 一覧 / 未使用 / 使用統計 / 初回ガイド / 設定)に加えて、⌘Kコマンドパレットと詳細ドロワーがあります。AIエージェントからは、上記 For AI Agents を参照してください:CLIは全コマンドが --json エンベロープ出力に対応。HTTP APIは同じデータ面に対応しています(/api/tools、/api/search?q=、/api/usage/stats、/api/settings など)。また、mcpServers 設定で toolscope mcp をstdio MCPサーバーとして登録できます(3ツール:search_tools / get_tool / machine_stats)。ライセンスはMITです。
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseAqualityDmaintenanceProvides native macOS computer control tools including mouse and keyboard simulation, screenshot capture, and application management for MCP-compatible agents. It enables AI assistants to directly interact with the macOS operating system and installed apps through standard tool calls.248
- FlicenseNot gradedqualityCmaintenanceExposes MCP tools that enable remote LLMs to query local Docker containers, OS processes, and system services in real time.
- AlicenseAqualityBmaintenanceA local MCP server that exposes macOS automation actions (AppleScript + CLIs) as tools, enabling MCP clients on your Mac to control apps, system settings, and more.39MIT
- AlicenseBqualityAmaintenanceEnables AI agents to directly access native macOS services, media, system health, and administration tools through a local MCP server.40218MIT
Related MCP Connectors
MCP connector that lets ChatGPT list, search, and run your Apple Shortcuts via a local Mac agent
Search, read, and write your Apple Notes from ChatGPT/Claude via a local Mac agent + MCP relay.
Search a curated directory of 300+ verified AI agents, MCP servers, and agentic tools.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Isuprman/toolscope'
If you have feedback or need assistance with the MCP directory API, please join our Discord server