Tools
Browse tools that AI setups depend on
Every tool name extracted from indexed skill metadata, AGENTS.md and CLAUDE.md instructions, and MCP configs. Open a tool to see which repositories reference it.
1,597 tools shown
1,597 total indexedRead
Core toolReads file contents from the local filesystem. Supports text files, images, PDFs, and Jupyter notebooks. Returns line-numbered output. The primary way AI agents inspect code before making changes.
Bash
Core toolExecutes shell commands and returns their output. Used for running tests, installing dependencies, git operations, and anything that needs a real terminal. Working directory persists between calls.
Glob
Core toolFinds files by name pattern. Works with any codebase size and returns results sorted by modification time. The go-to tool when you know what a file is called but not where it lives.
Grep
Core toolSearches file contents using regular expressions, powered by ripgrep. Supports glob and type filters, context lines, and multiple output modes. Faster and more reliable than running grep through Bash.
Write
Core toolCreates new files or fully overwrites existing ones. Used when the change is large enough that a diff-based edit would be harder to follow. Requires the file to have been read first if it already exists.
Edit
Core toolPerforms exact string replacements in files. Sends only the diff rather than the whole file. The preferred way to modify existing code because it is easier for humans to review.
AskUserQuestion
Core toolAsks the user a question and waits for their response. Used when the agent needs clarification, a decision, or approval before proceeding with a task.
WebFetch
Declared toolFetches content from a URL and processes it through a model. Converts HTML to markdown and summarizes large pages. Read-only, with a 15-minute cache for repeated access to the same URL.
Task
Declared toolCreates and manages tasks for tracking work within a conversation. Helps the agent break complex work into steps and report progress to the user.
WebSearch
Core toolSearches the web and returns summarized results. Used when the agent needs information that is not in the codebase, such as API documentation, library versions, or error message lookups.
Agent
Declared toolLaunches a specialized sub-agent to handle a complex task autonomously. Sub-agents run in their own context and return results when done. Used to parallelize work or delegate research.
Skill
Declared toolInvokes a user-defined slash command (skill). Skills are reusable prompts that expand into full task instructions when triggered. Mapped to /command-name shortcuts.
TaskCreate
Declared toolTool referenced in 142 skills across indexed repositories.
TaskUpdate
Declared toolTool referenced in 142 skills across indexed repositories.
TaskList
Declared toolTool referenced in 134 skills across indexed repositories.
mcp__context7__resolve-library-id
MCP toolMCP server that pulls up-to-date documentation for libraries and frameworks directly into the conversation. Reduces hallucination by grounding answers in current docs.
playwright
MCP toolBrowser automation framework by Microsoft. Provides headless Chrome, Firefox, and WebKit control for testing web applications, taking screenshots, and scraping pages.
Context7
MCP toolMCP server that pulls up-to-date documentation for libraries and frameworks directly into the conversation. Reduces hallucination by grounding answers in current docs.
TaskGet
Declared toolTool referenced in 79 skills across indexed repositories.
agent-browser
Declared toolBrowser automation tool for AI agents. Navigates pages, fills forms, clicks buttons, takes screenshots, and extracts data from web applications.
mcp__context7__get-library-docs
MCP toolMCP server that pulls up-to-date documentation for libraries and frameworks directly into the conversation. Reduces hallucination by grounding answers in current docs.
TodoWrite
Declared toolWrites and updates a structured to-do list that persists across the conversation. Used for tracking multi-step plans and checking off completed items.
statusLine
MCP toolTool provided through a Model Context Protocol server. Found in 66 MCP configs across indexed repositories.
read_file
Declared toolFile reading tool. Equivalent to the Read tool in some agent frameworks. Reads contents from the local filesystem.
mcp__codex__codex
MCP toolTool provided through a Model Context Protocol server. Found in 53 skills across indexed repositories.
laravel-boost
MCP toolMCP server for Laravel PHP framework. Provides Eloquent model introspection, route listing, artisan commands, and Laravel-specific code generation.
shadcn
MCP toolMCP server for the shadcn/ui component library. Surfaces component APIs, usage examples, and installation commands for Tailwind-based React UI components.
mcp__codex__codex-reply
MCP toolTool provided through a Model Context Protocol server. Found in 45 skills across indexed repositories.
write_file
Declared toolFile writing tool. Equivalent to the Write tool in some agent frameworks. Creates or overwrites files on the local filesystem.
chrome-devtools
MCP toolMCP server that connects to Chrome DevTools Protocol. Provides browser inspection, console output, network monitoring, and DOM manipulation.
SendMessage
Declared toolTool referenced in 35 skills across indexed repositories.
TeamCreate
Declared toolTool referenced in 34 skills across indexed repositories.
TeamDelete
Declared toolTool referenced in 34 skills across indexed repositories.
supabase
MCP toolTool provided through a Model Context Protocol server. Found in 34 MCP configs across indexed repositories.
bitwize-music-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 32 skills, 1 MCP config across indexed repositories.
Shell
Declared toolMCP server that provides shell command execution. Similar to the built-in Bash tool but delivered through MCP, giving finer control over allowed commands.
github
MCP toolMCP server for GitHub API operations. Manages repositories, issues, pull requests, and workflows directly from an AI coding session.
mcp__ccw-tools__team_msg
MCP toolTool provided through a Model Context Protocol server. Found in 30 skills across indexed repositories.
LSP
MCP toolQueries the Language Server Protocol for code intelligence. Provides go-to-definition, find-references, hover information, and diagnostics from the project's language server.
sequential-thinking
MCP toolMCP server that structures multi-step reasoning. Helps agents break complex problems into ordered steps, revise earlier conclusions, and maintain a clear chain of thought.
web_fetch
Declared toolWeb content fetching tool. Equivalent to the WebFetch tool in some agent frameworks. Retrieves and processes web page content.
python
MCP toolMCP server that provides a Python execution environment. Runs Python code, manages packages, and returns results directly to the agent.
--bun
Declared toolTool referenced in 22 skills across indexed repositories.
next-devtools
MCP toolMCP server for Next.js development. Surfaces route information, build diagnostics, and framework-specific tooling for Next.js applications.
nx-mcp
MCP toolMCP server for Nx monorepo tooling. Provides workspace graph analysis, task orchestration, and project dependency information for Nx-managed repositories.
sentry
MCP toolApplication monitoring and error tracking platform. The MCP server surfaces real-time error data, stack traces, and issue details inside the coding environment.
LS
Core toolLists directory contents. A lightweight alternative to Bash for exploring folder structure without the overhead of a shell invocation.
figma
MCP toolCollaborative design tool. The MCP server reads design files, extracts component information, and bridges design tokens into code.
memory
MCP toolTool provided through a Model Context Protocol server. Found in 18 MCP configs across indexed repositories.
mcp__context7__query-docs
MCP toolMCP server that pulls up-to-date documentation for libraries and frameworks directly into the conversation. Reduces hallucination by grounding answers in current docs.
spawn_agents_on_csv
Declared toolTool referenced in 16 skills across indexed repositories.
deepwiki
MCP toolMCP server that provides deep knowledge retrieval from wikis and documentation sources. Used for looking up detailed technical reference material.
mcp__google-sheets__get_sheet_data
MCP toolTool provided through a Model Context Protocol server. Found in 15 skills across indexed repositories.
mcp__google-sheets__list_sheets
MCP toolTool provided through a Model Context Protocol server. Found in 15 skills across indexed repositories.
SlashCommand
Declared toolTool referenced in 15 skills across indexed repositories.
fetch
MCP toolGeneral-purpose HTTP client tool. Makes requests to URLs and returns the response body. Used for API calls, downloading files, and checking endpoints.
ask_user
Declared toolPrompts the user for input. Equivalent to AskUserQuestion in some agent frameworks. Used when the agent needs human guidance.
EnterPlanMode
Declared toolTool referenced in 14 skills across indexed repositories.
filesystem
MCP toolTool provided through a Model Context Protocol server. Found in 14 MCP configs across indexed repositories.
serena
MCP toolMCP server for code intelligence. Provides semantic code navigation, symbol lookup, and codebase understanding through language server capabilities.
mcp__ace-tool__search_context
MCP toolTool provided through a Model Context Protocol server. Found in 13 skills across indexed repositories.
mcp__google-sheets__update_cells
MCP toolTool provided through a Model Context Protocol server. Found in 12 skills across indexed repositories.
Git
MCP toolMCP server for Git version control operations. Provides structured access to repository status, diffs, logs, branches, and commit operations.
apply_patch
Declared toolApplies a unified diff patch to one or more files. Used by some agent frameworks as an alternative to line-by-line editing when the change is best expressed as a patch.
AskQuestion
Declared toolTool referenced in 11 skills across indexed repositories.
mcp__arxiv-mcp-server__search_papers
MCP toolTool provided through a Model Context Protocol server. Found in 11 skills across indexed repositories.
mcp__google-scholar__search_google_scholar_key_words
MCP toolTool provided through a Model Context Protocol server. Found in 11 skills across indexed repositories.
mcp__mcp-brain_ipc_c__ipc_send
MCP toolTool provided through a Model Context Protocol server. Found in 11 skills across indexed repositories.
ToolSearch
Declared toolTool referenced in 11 skills across indexed repositories.
linear
MCP toolProject management tool for software teams. The MCP server reads and creates issues, cycles, and project updates without leaving the editor.
task-master-ai
MCP toolAI-powered task management MCP server. Breaks complex projects into structured tasks with dependencies, priorities, and progress tracking.
edit_file
Declared toolFile editing tool. Equivalent to the Edit tool in some agent frameworks. Applies targeted changes to existing files.
ExitPlanMode
Declared toolTool referenced in 10 skills across indexed repositories.
mcp__arxiv-mcp-server__read_paper
MCP toolTool provided through a Model Context Protocol server. Found in 10 skills across indexed repositories.
MultiEdit
Core toolApplies multiple edits to a single file in one operation. Each sub-edit is an exact string replacement, applied in order. Reduces round trips when several spots in the same file need changing.
postgres
MCP toolTool provided through a Model Context Protocol server. Found in 10 MCP configs across indexed repositories.
latex_compile
Declared toolTool referenced in 9 skills across indexed repositories.
list_directory
Declared toolTool referenced in 9 skills across indexed repositories.
mcp__firecrawl__firecrawl_search
MCP toolTool provided through a Model Context Protocol server. Found in 9 skills across indexed repositories.
mcp__heygen__
MCP toolTool provided through a Model Context Protocol server. Found in 9 skills across indexed repositories.
mcp__mcp-brain_ipc_c__ipc_recv
MCP toolTool provided through a Model Context Protocol server. Found in 9 skills across indexed repositories.
mcp__mcp-brain_ipc_c__ipc_search
MCP toolTool provided through a Model Context Protocol server. Found in 9 skills across indexed repositories.
mcp__qmd__vector_search
MCP toolTool provided through a Model Context Protocol server. Found in 9 skills across indexed repositories.
mcp__qsv__qsv_count
MCP toolTool provided through a Model Context Protocol server. Found in 9 skills across indexed repositories.
mcp__qsv__qsv_get_working_dir
MCP toolTool provided through a Model Context Protocol server. Found in 9 skills across indexed repositories.
mcp__qsv__qsv_headers
MCP toolTool provided through a Model Context Protocol server. Found in 9 skills across indexed repositories.
mcp__qsv__qsv_index
MCP toolTool provided through a Model Context Protocol server. Found in 9 skills across indexed repositories.
mcp__qsv__qsv_list_files
MCP toolTool provided through a Model Context Protocol server. Found in 9 skills across indexed repositories.
mcp__qsv__qsv_set_working_dir
MCP toolTool provided through a Model Context Protocol server. Found in 9 skills across indexed repositories.
mcp__qsv__qsv_sniff
MCP toolTool provided through a Model Context Protocol server. Found in 9 skills across indexed repositories.
str_replace
Declared toolTool referenced in 9 skills across indexed repositories.
web_search
Declared toolTool referenced in 9 skills across indexed repositories.
file-read
Declared toolTool referenced in 8 skills across indexed repositories.
file-write
Declared toolTool referenced in 8 skills across indexed repositories.
git-commit
Declared toolTool referenced in 8 skills across indexed repositories.
mcp__arxiv-mcp-server__download_paper
MCP toolTool provided through a Model Context Protocol server. Found in 8 skills across indexed repositories.
mcp__ccw-tools__edit_file
MCP toolTool provided through a Model Context Protocol server. Found in 8 skills across indexed repositories.
mcp__ccw-tools__read_file
MCP toolTool provided through a Model Context Protocol server. Found in 8 skills across indexed repositories.
mcp__ccw-tools__write_file
MCP toolTool provided through a Model Context Protocol server. Found in 8 skills across indexed repositories.
mcp__mcp-brain_ipc_c__ipc_list_agents
MCP toolTool provided through a Model Context Protocol server. Found in 8 skills across indexed repositories.
mcp__qsv__qsv_command
MCP toolTool provided through a Model Context Protocol server. Found in 8 skills across indexed repositories.
mcp__qsv__qsv_stats
MCP toolTool provided through a Model Context Protocol server. Found in 8 skills across indexed repositories.
use_mcp_tool
Declared toolTool referenced in 8 skills across indexed repositories.
herd
MCP toolTool provided through a Model Context Protocol server. Found in 8 MCP configs across indexed repositories.
svelte
MCP toolMCP server for the Svelte web framework. Surfaces component APIs, SvelteKit routing patterns, and framework-specific documentation.
-p
Declared toolTool referenced in 7 skills across indexed repositories.
list_agents
Declared toolTool referenced in 7 skills across indexed repositories.
mcp__memory__search_nodes
MCP toolTool provided through a Model Context Protocol server. Found in 7 skills across indexed repositories.
mcp__memorylane__get_activity_details
MCP toolTool provided through a Model Context Protocol server. Found in 7 skills across indexed repositories.
mcp__memorylane__search_context
MCP toolTool provided through a Model Context Protocol server. Found in 7 skills across indexed repositories.
mcp__qsv__qsv_sqlp
MCP toolTool provided through a Model Context Protocol server. Found in 7 skills across indexed repositories.
write_file edit_file read_file think_tool execute
Declared toolTool referenced in 7 skills across indexed repositories.
ask_followup_question
Declared toolTool referenced in 6 skills across indexed repositories.
mcp__bkend__
MCP toolTool provided through a Model Context Protocol server. Found in 6 skills across indexed repositories.
mcp__claude_ai_bioRxiv__search_preprints
MCP toolTool provided through a Model Context Protocol server. Found in 6 skills across indexed repositories.
mcp__fetch__fetch
MCP toolGeneral-purpose HTTP client tool. Makes requests to URLs and returns the response body. Used for API calls, downloading files, and checking endpoints.
mcp__hex-line__outline
MCP toolTool provided through a Model Context Protocol server. Found in 6 skills across indexed repositories.
mcp__hex-line__read_file
MCP toolTool provided through a Model Context Protocol server. Found in 6 skills across indexed repositories.
mcp__mcp-brain_ipc_c__conversation_create
MCP toolTool provided through a Model Context Protocol server. Found in 6 skills across indexed repositories.
mcp__mcp-brain_ipc_c__ipc_register
MCP toolTool provided through a Model Context Protocol server. Found in 6 skills across indexed repositories.
mcp__mcp-brain_task_manager__task_query
MCP toolTool provided through a Model Context Protocol server. Found in 6 skills across indexed repositories.
mcp__memorylane__browse_timeline
MCP toolTool provided through a Model Context Protocol server. Found in 6 skills across indexed repositories.
mcp__playwright__browser_navigate
MCP toolBrowser automation framework by Microsoft. Provides headless Chrome, Firefox, and WebKit control for testing web applications, taking screenshots, and scraping pages.
mcp__playwright__browser_snapshot
MCP toolBrowser automation framework by Microsoft. Provides headless Chrome, Firefox, and WebKit control for testing web applications, taking screenshots, and scraping pages.
mcp__playwright__browser_take_screenshot
MCP toolBrowser automation framework by Microsoft. Provides headless Chrome, Firefox, and WebKit control for testing web applications, taking screenshots, and scraping pages.
mcp__qmd__
MCP toolTool provided through a Model Context Protocol server. Found in 6 skills across indexed repositories.
mcp__qmd__deep_search
MCP toolTool provided through a Model Context Protocol server. Found in 6 skills across indexed repositories.
mcp__qmd__search
MCP toolTool provided through a Model Context Protocol server. Found in 6 skills across indexed repositories.
mcp__qsv__qsv_search_tools
MCP toolTool provided through a Model Context Protocol server. Found in 6 skills across indexed repositories.
nmem_context
Declared toolTool referenced in 6 skills across indexed repositories.
nmem_recall
Declared toolTool referenced in 6 skills across indexed repositories.
nmem_stats
Declared toolTool referenced in 6 skills across indexed repositories.
read_file write_file
Declared toolTool referenced in 6 skills across indexed repositories.
run_command
Declared toolTool referenced in 6 skills across indexed repositories.
brave-search
MCP toolTool provided through a Model Context Protocol server. Found in 6 MCP configs across indexed repositories.
claude-flow
MCP toolTool provided through a Model Context Protocol server. Found in 6 MCP configs across indexed repositories.
nostr
MCP toolTool provided through a Model Context Protocol server. Found in 6 MCP configs across indexed repositories.
notion
MCP toolWorkspace platform for docs, wikis, and databases. The MCP server lets agents read and update Notion pages, search content, and manage databases.
playwright-test
MCP toolTool provided through a Model Context Protocol server. Found in 6 MCP configs across indexed repositories.
XcodeBuildMCP
MCP toolMCP server for Xcode project management. Handles builds, test runs, simulator control, and project configuration for iOS and macOS development.
--version
Declared toolTool referenced in 5 skills across indexed repositories.
>-
Declared toolTool referenced in 5 skills across indexed repositories.
close_agent
Declared toolTool referenced in 5 skills across indexed repositories.
file-search
Declared toolTool referenced in 5 skills across indexed repositories.
followup_task
Declared toolTool referenced in 5 skills across indexed repositories.
get-caller-identity
Declared toolTool referenced in 5 skills across indexed repositories.
gh-query
Declared toolTool referenced in 5 skills across indexed repositories.
mcp__hex-line__changes
MCP toolTool provided through a Model Context Protocol server. Found in 5 skills across indexed repositories.
mcp__linear-server__get_issue
MCP toolTool provided through a Model Context Protocol server. Found in 5 skills across indexed repositories.
mcp__maestro-tools__team_msg
MCP toolTool provided through a Model Context Protocol server. Found in 5 skills across indexed repositories.
mcp__phantom-reflective__phantom_memory_search
MCP toolTool provided through a Model Context Protocol server. Found in 5 skills across indexed repositories.
mcp__qsv__qsv_frequency
MCP toolTool provided through a Model Context Protocol server. Found in 5 skills across indexed repositories.
report_agent_job_result
Declared toolTool referenced in 5 skills across indexed repositories.
request_user_input
Declared toolTool referenced in 5 skills across indexed repositories.
send_message
Declared toolTool referenced in 5 skills across indexed repositories.
skill_tool
Declared toolTool referenced in 5 skills across indexed repositories.
spawn_agent
Declared toolTool referenced in 5 skills across indexed repositories.
str_replace_based_edit
Declared toolTool referenced in 5 skills across indexed repositories.
TodoRead
Declared toolTool referenced in 5 skills across indexed repositories.
wait_agent
Declared toolTool referenced in 5 skills across indexed repositories.
write_file edit_file read_file think_tool
Declared toolTool referenced in 5 skills across indexed repositories.
docs-langchain
MCP toolTool provided through a Model Context Protocol server. Found in 5 MCP configs across indexed repositories.
markitdown
MCP toolTool provided through a Model Context Protocol server. Found in 5 MCP configs across indexed repositories.
pw
MCP toolTool provided through a Model Context Protocol server. Found in 5 MCP configs across indexed repositories.
shopify-dev-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 5 MCP configs across indexed repositories.
-b
Declared toolTool referenced in 4 skills across indexed repositories.
-u
Declared toolTool referenced in 4 skills across indexed repositories.
CronCreate
Declared toolTool referenced in 4 skills across indexed repositories.
CronDelete
Declared toolTool referenced in 4 skills across indexed repositories.
data_fetch
Declared toolTool referenced in 4 skills across indexed repositories.
doc_search
Declared toolTool referenced in 4 skills across indexed repositories.
execute_code
Declared toolTool referenced in 4 skills across indexed repositories.
mcp__aws-mcp__
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__awsdocs__
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__github__get_pull_request
MCP toolMCP server for GitHub API operations. Manages repositories, issues, pull requests, and workflows directly from an AI coding session.
mcp__hex-graph__audit_workspace
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__hex-line__edit_file
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__hex-line__verify
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__linear-server__update_issue
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__mcp-brain_task_manager__project_query
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__mcp-brain_task_manager__task_update
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__obsidian-vault__
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__phantom-reflective__phantom_list_sessions
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__playwright__
MCP toolBrowser automation framework by Microsoft. Provides headless Chrome, Firefox, and WebKit control for testing web applications, taking screenshots, and scraping pages.
mcp__playwright__browser_click
MCP toolBrowser automation framework by Microsoft. Provides headless Chrome, Firefox, and WebKit control for testing web applications, taking screenshots, and scraping pages.
mcp__playwright__browser_press_key
MCP toolBrowser automation framework by Microsoft. Provides headless Chrome, Firefox, and WebKit control for testing web applications, taking screenshots, and scraping pages.
mcp__playwright__browser_type
MCP toolBrowser automation framework by Microsoft. Provides headless Chrome, Firefox, and WebKit control for testing web applications, taking screenshots, and scraping pages.
mcp__playwright__browser_wait_for
MCP toolBrowser automation framework by Microsoft. Provides headless Chrome, Firefox, and WebKit control for testing web applications, taking screenshots, and scraping pages.
mcp__qmd__get
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__qmd__multi_get
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__qsv__qsv_joinp
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__qsv__qsv_moarstats
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__qsv__qsv_select
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__qsv__qsv_slice
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__ssh-mcp-server__download
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__ssh-mcp-server__execute-command
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__ssh-mcp-server__list-servers
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__ssh-mcp-server__upload
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__stability-ai__stability-ai-generate-image
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__tauri__driver_session
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__tauri__ipc_execute_command
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__tauri__ipc_get_captured
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__tauri__ipc_monitor
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__tauri__manage_window
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__tauri__read_logs
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__tauri__webview_dom_snapshot
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__tauri__webview_execute_js
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__tauri__webview_find_element
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__tauri__webview_get_styles
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp__zotero__
MCP toolTool provided through a Model Context Protocol server. Found in 4 skills across indexed repositories.
mcp_shadcn
Declared toolTool referenced in 4 skills across indexed repositories.
nmem_auto
Declared toolTool referenced in 4 skills across indexed repositories.
nmem_health
Declared toolTool referenced in 4 skills across indexed repositories.
nmem_remember
Declared toolTool referenced in 4 skills across indexed repositories.
replace_in_file
Declared toolTool referenced in 4 skills across indexed repositories.
scripts/run-tests.mjs
Declared toolTool referenced in 4 skills across indexed repositories.
StrReplace
Declared toolTool referenced in 4 skills across indexed repositories.
TaskStop
Declared toolTool referenced in 4 skills across indexed repositories.
jina-reader
MCP toolTool provided through a Model Context Protocol server. Found in 3 skills, 1 MCP config across indexed repositories.
angular-cli
MCP toolTool provided through a Model Context Protocol server. Found in 4 MCP configs across indexed repositories.
cloudbase
MCP toolTool provided through a Model Context Protocol server. Found in 4 MCP configs across indexed repositories.
eslint
MCP toolTool provided through a Model Context Protocol server. Found in 4 MCP configs across indexed repositories.
exa
MCP toolTool provided through a Model Context Protocol server. Found in 4 MCP configs across indexed repositories.
myco
MCP toolTool provided through a Model Context Protocol server. Found in 4 MCP configs across indexed repositories.
nixos
MCP toolTool provided through a Model Context Protocol server. Found in 4 MCP configs across indexed repositories.
nuxt
MCP toolTool provided through a Model Context Protocol server. Found in 4 MCP configs across indexed repositories.
r-mcptools
MCP toolTool provided through a Model Context Protocol server. Found in 4 MCP configs across indexed repositories.
reference-langchain
MCP toolTool provided through a Model Context Protocol server. Found in 4 MCP configs across indexed repositories.
slack
MCP toolTool provided through a Model Context Protocol server. Found in 4 MCP configs across indexed repositories.
sqlite
MCP toolTool provided through a Model Context Protocol server. Found in 4 MCP configs across indexed repositories.
taskmaster-ai
MCP toolTool provided through a Model Context Protocol server. Found in 4 MCP configs across indexed repositories.
tauri
MCP toolTool provided through a Model Context Protocol server. Found in 4 MCP configs across indexed repositories.
tidewave
MCP toolTool provided through a Model Context Protocol server. Found in 4 MCP configs across indexed repositories.
--method
Declared toolTool referenced in 3 skills across indexed repositories.
-C*openclip
Declared toolTool referenced in 3 skills across indexed repositories.
-rf
Declared toolTool referenced in 3 skills across indexed repositories.
.claude/scripts/jira-ops.sh
Declared toolTool referenced in 3 skills across indexed repositories.
GET
Declared toolTool referenced in 3 skills across indexed repositories.
mcp__chrome-devtools__
MCP toolMCP server that connects to Chrome DevTools Protocol. Provides browser inspection, console output, network monitoring, and DOM manipulation.
mcp__chrome-devtools__evaluate_script
MCP toolMCP server that connects to Chrome DevTools Protocol. Provides browser inspection, console output, network monitoring, and DOM manipulation.
mcp__chrome-devtools__take_screenshot
MCP toolMCP server that connects to Chrome DevTools Protocol. Provides browser inspection, console output, network monitoring, and DOM manipulation.
mcp__figma-remote-mcp__get_design_context
MCP toolTool provided through a Model Context Protocol server. Found in 3 skills across indexed repositories.
mcp__figma-remote-mcp__get_screenshot
MCP toolTool provided through a Model Context Protocol server. Found in 3 skills across indexed repositories.
mcp__github__
MCP toolMCP server for GitHub API operations. Manages repositories, issues, pull requests, and workflows directly from an AI coding session.
mcp__github__add_issue_comment
MCP toolMCP server for GitHub API operations. Manages repositories, issues, pull requests, and workflows directly from an AI coding session.
mcp__github__create_pull_request_review
MCP toolMCP server for GitHub API operations. Manages repositories, issues, pull requests, and workflows directly from an AI coding session.
mcp__github__get_pull_request_files
MCP toolMCP server for GitHub API operations. Manages repositories, issues, pull requests, and workflows directly from an AI coding session.
mcp__handoff__handoff_get_task
MCP toolTool provided through a Model Context Protocol server. Found in 3 skills across indexed repositories.
mcp__handoff__handoff_list_tasks
MCP toolTool provided through a Model Context Protocol server. Found in 3 skills across indexed repositories.
mcp__handoff__handoff_push_plan
MCP toolTool provided through a Model Context Protocol server. Found in 3 skills across indexed repositories.
mcp__handoff__handoff_sync_status
MCP toolTool provided through a Model Context Protocol server. Found in 3 skills across indexed repositories.
mcp__handoff__handoff_update_task
MCP toolTool provided through a Model Context Protocol server. Found in 3 skills across indexed repositories.
mcp__hex-graph__analyze_architecture
MCP toolTool provided through a Model Context Protocol server. Found in 3 skills across indexed repositories.
mcp__hex-graph__find_references
MCP toolTool provided through a Model Context Protocol server. Found in 3 skills across indexed repositories.
mcp__hex-graph__find_symbols
MCP toolTool provided through a Model Context Protocol server. Found in 3 skills across indexed repositories.
mcp__hex-graph__index_project
MCP toolTool provided through a Model Context Protocol server. Found in 3 skills across indexed repositories.
mcp__hex-graph__inspect_symbol
MCP toolTool provided through a Model Context Protocol server. Found in 3 skills across indexed repositories.
mcp__hex-line__inspect_path
MCP toolTool provided through a Model Context Protocol server. Found in 3 skills across indexed repositories.
mcp__hex-line__write_file
MCP toolTool provided through a Model Context Protocol server. Found in 3 skills across indexed repositories.
mcp__ide__getDiagnostics
MCP toolTool provided through a Model Context Protocol server. Found in 3 skills across indexed repositories.
mcp__linear__save_issue
MCP toolProject management tool for software teams. The MCP server reads and creates issues, cycles, and project updates without leaving the editor.
mcp__playwright__browser_evaluate
MCP toolBrowser automation framework by Microsoft. Provides headless Chrome, Firefox, and WebKit control for testing web applications, taking screenshots, and scraping pages.
mcp__playwright__browser_run_code
MCP toolBrowser automation framework by Microsoft. Provides headless Chrome, Firefox, and WebKit control for testing web applications, taking screenshots, and scraping pages.
mcp__playwright__browser_tabs
MCP toolBrowser automation framework by Microsoft. Provides headless Chrome, Firefox, and WebKit control for testing web applications, taking screenshots, and scraping pages.
mcp__plugin_power-pages_microsoft-learn__microsoft_code_sample_search
MCP toolTool provided through a Model Context Protocol server. Found in 3 skills across indexed repositories.
mcp__plugin_power-pages_microsoft-learn__microsoft_docs_fetch
MCP toolTool provided through a Model Context Protocol server. Found in 3 skills across indexed repositories.
mcp__plugin_power-pages_microsoft-learn__microsoft_docs_search
MCP toolTool provided through a Model Context Protocol server. Found in 3 skills across indexed repositories.
mcp__plugin_power-pages_playwright__browser_click
MCP toolTool provided through a Model Context Protocol server. Found in 3 skills across indexed repositories.
mcp__plugin_power-pages_playwright__browser_navigate
MCP toolTool provided through a Model Context Protocol server. Found in 3 skills across indexed repositories.
mcp__plugin_power-pages_playwright__browser_snapshot
MCP toolTool provided through a Model Context Protocol server. Found in 3 skills across indexed repositories.
mcp__qsv__qsv_search
MCP toolTool provided through a Model Context Protocol server. Found in 3 skills across indexed repositories.
mcp__tauri__webview_screenshot
MCP toolTool provided through a Model Context Protocol server. Found in 3 skills across indexed repositories.
mcp__very-good-cli__create
MCP toolTool provided through a Model Context Protocol server. Found in 3 skills across indexed repositories.
NotebookEdit
Declared toolEdits Jupyter notebook cells. Can add, replace, or remove cells by index. Supports code, markdown, and raw cell types in .ipynb files.
process_manager shell_execute
Declared toolTool referenced in 3 skills across indexed repositories.
PushNotification
Declared toolTool referenced in 3 skills across indexed repositories.
PYTHONPATH=.
Declared toolTool referenced in 3 skills across indexed repositories.
rev-parse
Declared toolTool referenced in 3 skills across indexed repositories.
search_query
Declared toolTool referenced in 3 skills across indexed repositories.
serper-google
Declared toolTool referenced in 3 skills across indexed repositories.
spec-gen-plan-refactor
Declared toolTool referenced in 3 skills across indexed repositories.
StitchMCP
Declared toolTool referenced in 3 skills across indexed repositories.
video_orchestrator.py
Declared toolTool referenced in 3 skills across indexed repositories.
web-fetch
Declared toolTool referenced in 3 skills across indexed repositories.
zhipu-search
Declared toolTool referenced in 3 skills across indexed repositories.
agentation
MCP toolTool provided through a Model Context Protocol server. Found in 3 MCP configs across indexed repositories.
aspire
MCP toolTool provided through a Model Context Protocol server. Found in 3 MCP configs across indexed repositories.
atlassian
MCP toolTool provided through a Model Context Protocol server. Found in 3 MCP configs across indexed repositories.
aws-knowledge
MCP toolTool provided through a Model Context Protocol server. Found in 3 MCP configs across indexed repositories.
browsermcp
MCP toolTool provided through a Model Context Protocol server. Found in 3 MCP configs across indexed repositories.
cloudflare
MCP toolTool provided through a Model Context Protocol server. Found in 3 MCP configs across indexed repositories.
code-review-graph
MCP toolTool provided through a Model Context Protocol server. Found in 3 MCP configs across indexed repositories.
comfyui-mcp-server
MCP toolTool provided through a Model Context Protocol server. Found in 3 MCP configs across indexed repositories.
dart
MCP toolTool provided through a Model Context Protocol server. Found in 3 MCP configs across indexed repositories.
firecrawl
MCP toolTool provided through a Model Context Protocol server. Found in 3 MCP configs across indexed repositories.
godot
MCP toolTool provided through a Model Context Protocol server. Found in 3 MCP configs across indexed repositories.
linear-server
MCP toolTool provided through a Model Context Protocol server. Found in 3 MCP configs across indexed repositories.
microsoft-learn
MCP toolTool provided through a Model Context Protocol server. Found in 3 MCP configs across indexed repositories.
stripe
MCP toolTool provided through a Model Context Protocol server. Found in 3 MCP configs across indexed repositories.
switchboard
MCP toolTool provided through a Model Context Protocol server. Found in 3 MCP configs across indexed repositories.
tanstack
MCP toolTool provided through a Model Context Protocol server. Found in 3 MCP configs across indexed repositories.
tessl
MCP toolTool provided through a Model Context Protocol server. Found in 3 MCP configs across indexed repositories.
vercel
MCP toolTool provided through a Model Context Protocol server. Found in 3 MCP configs across indexed repositories.
vue-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 3 MCP configs across indexed repositories.
Tool provided through a Model Context Protocol server. Found in 3 MCP configs across indexed repositories.
${CLAUDE_PLUGIN_ROOT}/skills/count-mcp-tools/scripts/count-tools.ts
Declared toolTool referenced in 2 skills across indexed repositories.
--dev
Declared toolTool referenced in 2 skills across indexed repositories.
--group
Declared toolTool referenced in 2 skills across indexed repositories.
--help
Declared toolTool referenced in 2 skills across indexed repositories.
--package
Declared toolTool referenced in 2 skills across indexed repositories.
--show-current
Declared toolTool referenced in 2 skills across indexed repositories.
--test
Declared toolTool referenced in 2 skills across indexed repositories.
-f
Declared toolTool referenced in 2 skills across indexed repositories.
-g
Declared toolTool referenced in 2 skills across indexed repositories.
-s
Declared toolTool referenced in 2 skills across indexed repositories.
-v
Declared toolTool referenced in 2 skills across indexed repositories.
-y
Declared toolTool referenced in 2 skills across indexed repositories.
.claude/scripts/format-and-lint.sh
Declared toolTool referenced in 2 skills across indexed repositories.
agent-device
Declared toolTool referenced in 2 skills across indexed repositories.
app_cli
Declared toolTool referenced in 2 skills across indexed repositories.
arxiv-search
Declared toolTool referenced in 2 skills across indexed repositories.
deep-research
Declared toolTool referenced in 2 skills across indexed repositories.
delegate_to_ai_agent python_code check_delegated_tasks
Declared toolTool referenced in 2 skills across indexed repositories.
fetch-diff
Declared toolTool referenced in 2 skills across indexed repositories.
file_read
Declared toolTool referenced in 2 skills across indexed repositories.
get-url
Declared toolTool referenced in 2 skills across indexed repositories.
list_workflows
Declared toolTool referenced in 2 skills across indexed repositories.
mcp__backlog__task_edit
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__backlog__task_view
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__brave-search__brave_web_search
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__canvas-authoring__compile_canvas
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__cdk__
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__chrome-devtools__navigate_page
MCP toolMCP server that connects to Chrome DevTools Protocol. Provides browser inspection, console output, network monitoring, and DOM manipulation.
mcp__chrome-devtools__resize_page
MCP toolMCP server that connects to Chrome DevTools Protocol. Provides browser inspection, console output, network monitoring, and DOM manipulation.
mcp__claude_ai_Asana__create_task_confirm
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__claude_ai_Asana__create_task_preview
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__claude_ai_Asana__get_me
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__claude_ai_Asana__get_task
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__claude_ai_Asana__search_tasks_preview
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__claude_ai_Asana__update_tasks
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__context7
MCP toolMCP server that pulls up-to-date documentation for libraries and frameworks directly into the conversation. Reduces hallucination by grounding answers in current docs.
mcp__exa__web_search_exa
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__github__add_comment_to_pending_review
MCP toolMCP server for GitHub API operations. Manages repositories, issues, pull requests, and workflows directly from an AI coding session.
mcp__github__add_reply_to_pull_request_comment
MCP toolMCP server for GitHub API operations. Manages repositories, issues, pull requests, and workflows directly from an AI coding session.
mcp__github__create_issue
MCP toolMCP server for GitHub API operations. Manages repositories, issues, pull requests, and workflows directly from an AI coding session.
mcp__github__list_pull_requests
MCP toolMCP server for GitHub API operations. Manages repositories, issues, pull requests, and workflows directly from an AI coding session.
mcp__github__pull_request_read
MCP toolMCP server for GitHub API operations. Manages repositories, issues, pull requests, and workflows directly from an AI coding session.
mcp__github__pull_request_review_write
MCP toolMCP server for GitHub API operations. Manages repositories, issues, pull requests, and workflows directly from an AI coding session.
mcp__github_inline_comment__create_inline_comment
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__google-scholar__search_google_scholar_advanced
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__hex-graph__analyze_changes
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__hex-graph__analyze_edit_region
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__hex-line__grep_search
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__linear-server__create_comment
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__linear-server__create_issue
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__linear-server__list_issues
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__magic__21st_magic_component_builder
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__magic__21st_magic_component_refiner
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__mcp-brain_task_manager__project_create
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__mcp-brain_task_manager__project_dependency_query
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__mcp-brain_task_manager__project_dependency_set
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__mcp-brain_task_manager__project_progress
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__mcp-brain_task_manager__task_create
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__mcp-brain_task_manager__task_delete
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__mcp-brain_task_manager__task_pipeline_check
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__mcp-brain_task_manager__task_stats
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__mongodb__
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__pencil__batch_design
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__pencil__batch_get
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__pencil__find_empty_space_on_canvas
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__pencil__get_editor_state
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__pencil__get_guidelines
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__pencil__get_screenshot
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__pencil__get_style_guide
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__pencil__get_style_guide_tags
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__pencil__get_variables
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__pencil__open_document
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__pencil__set_variables
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__pencil__snapshot_layout
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__playwright__browser_close
MCP toolBrowser automation framework by Microsoft. Provides headless Chrome, Firefox, and WebKit control for testing web applications, taking screenshots, and scraping pages.
mcp__plugin_power-pages_playwright__browser_close
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__qmd__status
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__qsv__qsv_describegpt
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__qsv__qsv_to_parquet
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__sequential-thinking__sequentialthinking
MCP toolMCP server that structures multi-step reasoning. Helps agents break complex problems into ordered steps, revise earlier conclusions, and maintain a clear chain of thought.
mcp__SequentialThinking__sequentialthinking
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__supabase__
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__very-good-cli__packages_check_licenses
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__very-good-cli__packages_get
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__very-good-cli__test
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
mcp__web_reader__webReader
MCP toolTool provided through a Model Context Protocol server. Found in 2 skills across indexed repositories.
merge-base
Declared toolTool referenced in 2 skills across indexed repositories.
nmem_conflicts
Declared toolTool referenced in 2 skills across indexed repositories.
nmem_habits
Declared toolTool referenced in 2 skills across indexed repositories.
playwright-cli
Declared toolTool referenced in 2 skills across indexed repositories.
PLUGINS.md
Declared toolTool referenced in 2 skills across indexed repositories.
REDIS_TEST=1
Declared toolTool referenced in 2 skills across indexed repositories.
sandbox_execute_bash
Declared toolTool referenced in 2 skills across indexed repositories.
sandbox_file_operations
Declared toolTool referenced in 2 skills across indexed repositories.
security-scan
Declared toolTool referenced in 2 skills across indexed repositories.
send_file
Declared toolTool referenced in 2 skills across indexed repositories.
simple-files.
Declared toolTool referenced in 2 skills across indexed repositories.
social_generate_cover_image
Declared toolTool referenced in 2 skills across indexed repositories.
spec-gen-analyze-codebase
Declared toolTool referenced in 2 skills across indexed repositories.
TaskOutput
Declared toolTool referenced in 2 skills across indexed repositories.
web-search file-read
Declared toolTool referenced in 2 skills across indexed repositories.
WriteFile
Declared toolTool referenced in 2 skills across indexed repositories.
bedrock-agentcore
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill, 1 MCP config across indexed repositories.
web-search
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill, 1 MCP config across indexed repositories.
amplitude
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
apple-docs
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
arxiv
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
arxiv-mcp-server
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
astro-docs
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
aws-diagram
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
aws-iac
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
chakra-ui
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
chrome-devtools-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
claude-code-explorer
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
clickup
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
cmdr
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
codegraph
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
devinfra-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
docker
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
Figma Desktop
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
filesystem_docs
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
filesystem_workspace
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
firebase
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
firefox-devtools
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
gemini
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
ghidra
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
gitlab
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
gopls
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
hubspot
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
huggingface-skills
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
kuzu-memory
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
MaaMCP
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
magic
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
marionette
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
mastra
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
mcp-docs
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
mcp-search-console
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
microsoft-docs
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
mongodb
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
mysql
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
nexus-router
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
notebooklm
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
nuxt-ui
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
o3-search
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
odoo
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
openmemory
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
perplexity
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
phrocs
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
plate
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
primeng
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
puppeteer
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
qmd
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
railway-mcp-server
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
relaycast
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
resend
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
ruv-swarm
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
seam-docs
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
semgrep
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
sentry-dev
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
sequential-thinking-tools
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
sequentialthinking
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
socraticode
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
sonde
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
spear-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
spotlight
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
storybook
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
temporal-docs
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
time
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
tools
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
trigger
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
ultracite
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
wheat
MCP toolTool provided through a Model Context Protocol server. Found in 2 MCP configs across indexed repositories.
$MNGR_AGENT_NAME
Declared toolTool referenced in 1 skill across indexed repositories.
${CLAUDE_PLUGIN_ROOT}/skills/discuss-mcp/scripts/analyze-traces.ts
Declared toolTool referenced in 1 skill across indexed repositories.
${CLAUDE_PLUGIN_ROOT}/skills/discuss-mcp/scripts/list-chained-tools.ts
Declared toolTool referenced in 1 skill across indexed repositories.
${CLAUDE_PLUGIN_ROOT}/skills/update-ignored-endpoints/scripts/update-ignored-endpoints.ts
Declared toolTool referenced in 1 skill across indexed repositories.
${CLAUDE_SKILL_DIR}/
Declared toolTool referenced in 1 skill across indexed repositories.
-
Declared toolTool referenced in 1 skill across indexed repositories.
--cwd
Declared toolTool referenced in 1 skill across indexed repositories.
--empty
Declared toolTool referenced in 1 skill across indexed repositories.
--owner
Declared toolTool referenced in 1 skill across indexed repositories.
--repo
Declared toolTool referenced in 1 skill across indexed repositories.
--sandbox
Declared toolTool referenced in 1 skill across indexed repositories.
--write
Declared toolTool referenced in 1 skill across indexed repositories.
-c
Declared toolTool referenced in 1 skill across indexed repositories.
-d
Declared toolTool referenced in 1 skill across indexed repositories.
-e
Declared toolTool referenced in 1 skill across indexed repositories.
-m
Declared toolTool referenced in 1 skill across indexed repositories.
-o
Declared toolTool referenced in 1 skill across indexed repositories.
-sk
Declared toolTool referenced in 1 skill across indexed repositories.
-Version
Declared toolTool referenced in 1 skill across indexed repositories.
-w
Declared toolTool referenced in 1 skill across indexed repositories.
.claude/scripts/check-ci.sh
Declared toolTool referenced in 1 skill across indexed repositories.
.claude/scripts/poll-pr.sh
Declared toolTool referenced in 1 skill across indexed repositories.
.claude/scripts/remote-playwright.sh
Declared toolTool referenced in 1 skill across indexed repositories.
.claude/scripts/session-setup.sh
Declared toolTool referenced in 1 skill across indexed repositories.
.claude/scripts/validate-pr-title.sh
Declared toolTool referenced in 1 skill across indexed repositories.
.claude/skills/microcopy-review/references/ibm-style-guide.txt
Declared toolTool referenced in 1 skill across indexed repositories.
.claude/skills/webgpu-specs/download.sh
Declared toolTool referenced in 1 skill across indexed repositories.
.continue-here.md
Declared toolTool referenced in 1 skill across indexed repositories.
/.claude/skills/using-mtcute/tools/
Declared toolTool referenced in 1 skill across indexed repositories.
/etc/os-release
Declared toolTool referenced in 1 skill across indexed repositories.
/scripts/discover-servers.sh
Declared toolTool referenced in 1 skill across indexed repositories.
/scripts/execute-code.sh
Declared toolTool referenced in 1 skill across indexed repositories.
/search-patents.sh
Declared toolTool referenced in 1 skill across indexed repositories.
/tmp/security-review-
Declared toolTool referenced in 1 skill across indexed repositories.
1-3
Declared toolTool referenced in 1 skill across indexed repositories.
2-3
Declared toolTool referenced in 1 skill across indexed repositories.
@ant-design/cli
Declared toolTool referenced in 1 skill across indexed repositories.
@mermaid-js/mermaid-cli
Declared toolTool referenced in 1 skill across indexed repositories.
@vercel/before-and-after
Declared toolTool referenced in 1 skill across indexed repositories.
_tools/screenshots/
Declared toolTool referenced in 1 skill across indexed repositories.
action-cli.ts
Declared toolTool referenced in 1 skill across indexed repositories.
add_locations
Declared toolTool referenced in 1 skill across indexed repositories.
agent-task
Declared toolTool referenced in 1 skill across indexed repositories.
analyze-ci
Declared toolTool referenced in 1 skill across indexed repositories.
ansible-galaxy
Declared toolTool referenced in 1 skill across indexed repositories.
ansible-playbook
Declared toolTool referenced in 1 skill across indexed repositories.
api-call
Declared toolTool referenced in 1 skill across indexed repositories.
app_launcher
Declared toolTool referenced in 1 skill across indexed repositories.
app_list
Declared toolTool referenced in 1 skill across indexed repositories.
apple-oss-distributions
Declared toolTool referenced in 1 skill across indexed repositories.
apply_diff
Declared toolTool referenced in 1 skill across indexed repositories.
audio_automation
Declared toolTool referenced in 1 skill across indexed repositories.
autocontext_judge autocontext_improve autocontext_status autocontext_scenarios autocontext_queue
Declared toolTool referenced in 1 skill across indexed repositories.
Automattic/pocket-casts-android
Declared toolTool referenced in 1 skill across indexed repositories.
bad-tool
Declared toolTool referenced in 1 skill across indexed repositories.
BashOutput
Declared toolTool referenced in 1 skill across indexed repositories.
BashTool
Declared toolTool referenced in 1 skill across indexed repositories.
battery_monitor
Declared toolTool referenced in 1 skill across indexed repositories.
bedrock-agentcore-control
Declared toolTool referenced in 1 skill across indexed repositories.
bedrock-agentcore-runtime
Declared toolTool referenced in 1 skill across indexed repositories.
before-and-after
Declared toolTool referenced in 1 skill across indexed repositories.
bluetooth_automation
Declared toolTool referenced in 1 skill across indexed repositories.
bug-cli
Declared toolTool referenced in 1 skill across indexed repositories.
calendar-create-event
Declared toolTool referenced in 1 skill across indexed repositories.
camera_control
Declared toolTool referenced in 1 skill across indexed repositories.
check_status
Declared toolTool referenced in 1 skill across indexed repositories.
checkup-report.js
Declared toolTool referenced in 1 skill across indexed repositories.
cherry-pick
Declared toolTool referenced in 1 skill across indexed repositories.
chromiumWorkspace
Declared toolTool referenced in 1 skill across indexed repositories.
clipboard-read
Declared toolTool referenced in 1 skill across indexed repositories.
clipboard-write
Declared toolTool referenced in 1 skill across indexed repositories.
code_mode
Declared toolTool referenced in 1 skill across indexed repositories.
contacts-delete
Declared toolTool referenced in 1 skill across indexed repositories.
contacts-search
Declared toolTool referenced in 1 skill across indexed repositories.
contacts-upsert
Declared toolTool referenced in 1 skill across indexed repositories.
context-search-agent
Declared toolTool referenced in 1 skill across indexed repositories.
convert_temperature convert_distance convert_weight
Declared toolTool referenced in 1 skill across indexed repositories.
create_schedule
Declared toolTool referenced in 1 skill across indexed repositories.
cron_job
Declared toolTool referenced in 1 skill across indexed repositories.
cron_scheduler
Declared toolTool referenced in 1 skill across indexed repositories.
CronList
Declared toolTool referenced in 1 skill across indexed repositories.
delegate_to_ai_agent check_delegated_tasks
Declared toolTool referenced in 1 skill across indexed repositories.
delegate_to_ai_agent python_code javascript_code web_search http_request calculator current_time
Declared toolTool referenced in 1 skill across indexed repositories.
delete_schedule
Declared toolTool referenced in 1 skill across indexed repositories.
describe_component
Declared toolTool referenced in 1 skill across indexed repositories.
describe_stacks
Declared toolTool referenced in 1 skill across indexed repositories.
directory-create
Declared toolTool referenced in 1 skill across indexed repositories.
discover_skills
Declared toolTool referenced in 1 skill across indexed repositories.
dump-test-schema
Declared toolTool referenced in 1 skill across indexed repositories.
EnterWorktree
Declared toolTool referenced in 1 skill across indexed repositories.
environmental_sensors
Declared toolTool referenced in 1 skill across indexed repositories.
execute_command read_file
Declared toolTool referenced in 1 skill across indexed repositories.
executeCommand
Declared toolTool referenced in 1 skill across indexed repositories.
explore_component
Declared toolTool referenced in 1 skill across indexed repositories.
FakeTool
Declared toolTool referenced in 1 skill across indexed repositories.
fetch-app-settings
Declared toolTool referenced in 1 skill across indexed repositories.
fetch-unresolved-comments
Declared toolTool referenced in 1 skill across indexed repositories.
fetchGithubReadme
Declared toolTool referenced in 1 skill across indexed repositories.
fetchWebContent
Declared toolTool referenced in 1 skill across indexed repositories.
ffmpeg -ss
Declared toolTool referenced in 1 skill across indexed repositories.
file_modify
Declared toolTool referenced in 1 skill across indexed repositories.
FileReadTool
Declared toolTool referenced in 1 skill across indexed repositories.
FileWriterTool
Declared toolTool referenced in 1 skill across indexed repositories.
find_annotations
Declared toolTool referenced in 1 skill across indexed repositories.
fs_search
Declared toolTool referenced in 1 skill across indexed repositories.
generate-sandbox
Declared toolTool referenced in 1 skill across indexed repositories.
Get-AzureDevOpsBuildAnalysis.ps1
Declared toolTool referenced in 1 skill across indexed repositories.
get_schedule
Declared toolTool referenced in 1 skill across indexed repositories.
get_schedule_history
Declared toolTool referenced in 1 skill across indexed repositories.
git-init
Declared toolTool referenced in 1 skill across indexed repositories.
git_diff
Declared toolTool referenced in 1 skill across indexed repositories.
GitHub API
Declared toolTool referenced in 1 skill across indexed repositories.
google_calendar
Declared toolTool referenced in 1 skill across indexed repositories.
google_contacts
Declared toolTool referenced in 1 skill across indexed repositories.
google_drive
Declared toolTool referenced in 1 skill across indexed repositories.
google_gmail
Declared toolTool referenced in 1 skill across indexed repositories.
google_sheets
Declared toolTool referenced in 1 skill across indexed repositories.
google_tasks
Declared toolTool referenced in 1 skill across indexed repositories.
health-active-energy-today
Declared toolTool referenced in 1 skill across indexed repositories.
health-distance-today
Declared toolTool referenced in 1 skill across indexed repositories.
health-heart-rate-resting
Declared toolTool referenced in 1 skill across indexed repositories.
health-sleep-last-night
Declared toolTool referenced in 1 skill across indexed repositories.
health-sleep-week
Declared toolTool referenced in 1 skill across indexed repositories.
health-steps-range
Declared toolTool referenced in 1 skill across indexed repositories.
health-steps-today
Declared toolTool referenced in 1 skill across indexed repositories.
health-steps-yesterday
Declared toolTool referenced in 1 skill across indexed repositories.
health-workout-recent
Declared toolTool referenced in 1 skill across indexed repositories.
http file_read
Declared toolTool referenced in 1 skill across indexed repositories.
http_fetch
Declared toolTool referenced in 1 skill across indexed repositories.
inspect_image
Declared toolTool referenced in 1 skill across indexed repositories.
invoke_skill
Declared toolTool referenced in 1 skill across indexed repositories.
javascript_code
Declared toolTool referenced in 1 skill across indexed repositories.
KillShell
Declared toolTool referenced in 1 skill across indexed repositories.
knowledge-retrieval
Declared toolTool referenced in 1 skill across indexed repositories.
KODUS_GET_PULL_REQUEST KODUS_GET_PULL_REQUEST_DIFF
Declared toolTool referenced in 1 skill across indexed repositories.
lime_create_broadcast_generation_task
Declared toolTool referenced in 1 skill across indexed repositories.
lime_create_cover_generation_task
Declared toolTool referenced in 1 skill across indexed repositories.
lime_create_image_generation_task
Declared toolTool referenced in 1 skill across indexed repositories.
lime_create_modal_resource_search_task
Declared toolTool referenced in 1 skill across indexed repositories.
lime_create_transcription_task
Declared toolTool referenced in 1 skill across indexed repositories.
lime_create_typesetting_task
Declared toolTool referenced in 1 skill across indexed repositories.
lime_create_url_parse_task
Declared toolTool referenced in 1 skill across indexed repositories.
lime_create_video_generation_task
Declared toolTool referenced in 1 skill across indexed repositories.
lime_search_web_images
Declared toolTool referenced in 1 skill across indexed repositories.
lime_site_info
Declared toolTool referenced in 1 skill across indexed repositories.
lime_site_list
Declared toolTool referenced in 1 skill across indexed repositories.
lime_site_run
Declared toolTool referenced in 1 skill across indexed repositories.
lime_site_search
Declared toolTool referenced in 1 skill across indexed repositories.
lint-branch
Declared toolTool referenced in 1 skill across indexed repositories.
lint-check complexity-analysis
Declared toolTool referenced in 1 skill across indexed repositories.
lint_svg
Declared toolTool referenced in 1 skill across indexed repositories.
list-functions
Declared toolTool referenced in 1 skill across indexed repositories.
list-timers
Declared toolTool referenced in 1 skill across indexed repositories.
list_schedules
Declared toolTool referenced in 1 skill across indexed repositories.
list_slash_commands query_plugin_capabilities run_slash_command
Declared toolTool referenced in 1 skill across indexed repositories.
mcp__1c-ai-debug__execute_1c_code
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__1c-ai-debug__run_unit_tests
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__21st_dev__
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__4_5v_mcp__analyze_image
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__<your-mcp>__
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__acdocs__fetch_agentcore_doc
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__acdocs__search_agentcore_docs
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__actionbook__
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__arxiv-mcp-server__list_papers
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__auto-researcher__
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__backlog__task_complete
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__backlog__task_list
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__backlog__task_search
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__brain_ipc_c__conversation_create
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__brain_ipc_c__ipc_list_agents
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__brain_ipc_c__ipc_recv
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__brain_ipc_c__ipc_register
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__brain_ipc_c__ipc_search
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__brain_ipc_c__ipc_send
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__canvas-authoring__describe_api
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__canvas-authoring__get_data_source_schema
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__canvas-authoring__list_apis
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__canvas-authoring__list_data_sources
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__canvas-authoring__sync_canvas
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__ccw-tools__core_memory
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__chrome-devtools__emulate
MCP toolMCP server that connects to Chrome DevTools Protocol. Provides browser inspection, console output, network monitoring, and DOM manipulation.
mcp__chrome-devtools__lighthouse_audit
MCP toolMCP server that connects to Chrome DevTools Protocol. Provides browser inspection, console output, network monitoring, and DOM manipulation.
mcp__chrome-devtools__performance_analyze_insight
MCP toolMCP server that connects to Chrome DevTools Protocol. Provides browser inspection, console output, network monitoring, and DOM manipulation.
mcp__chrome-devtools__performance_start_trace
MCP toolMCP server that connects to Chrome DevTools Protocol. Provides browser inspection, console output, network monitoring, and DOM manipulation.
mcp__chrome-devtools__performance_stop_trace
MCP toolMCP server that connects to Chrome DevTools Protocol. Provides browser inspection, console output, network monitoring, and DOM manipulation.
mcp__chrome__use_browser
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__circleci-mcp-server__find_flaky_tests
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__circleci-mcp-server__get_build_failure_logs
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__circleci-mcp-server__get_job_test_results
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__circleci-mcp-server__get_latest_pipeline_status
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__circleci-mcp-server__list_followed_projects
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__circleci-mcp-server__rerun_workflow
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__claude_ai_Asana__get_my_tasks
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__claude_ai_Asana__get_project
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__claude_ai_Asana__get_projects
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__claude_ai_Asana__get_tasks
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__claude_ai_Asana__search_objects
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__claude_ai_bioRxiv__get_preprint
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__claude_ai_Chainloop__download_evidence_by_digest
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__claude_ai_Chainloop__get_frameworks_compliance
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__claude_ai_Chainloop__list_pieces_of_evidence
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__claude_ai_Chainloop__list_products_with_versions
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__claude_ai_Notion__fetch
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__claude_ai_Notion__notion-create-comment
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__claude_ai_Notion__notion-create-database
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__claude_ai_Notion__notion-create-pages
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__claude_ai_Notion__notion-duplicate-page
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__claude_ai_Notion__notion-get-comments
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__claude_ai_Notion__notion-get-teams
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__claude_ai_Notion__notion-get-users
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__claude_ai_Notion__notion-move-pages
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__claude_ai_Notion__notion-update-data-source
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__claude_ai_Notion__notion-update-page
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__claude_ai_Notion__search
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__claude_buddy__
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__clawmem__
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__conductor__GetWorkspaceDiff
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__context7__
MCP toolMCP server that pulls up-to-date documentation for libraries and frameworks directly into the conversation. Reduces hallucination by grounding answers in current docs.
mcp__context7__get_library_docs
MCP toolMCP server that pulls up-to-date documentation for libraries and frameworks directly into the conversation. Reduces hallucination by grounding answers in current docs.
mcp__costexp__
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__cursor-browser-extension__browser_navigate
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__cursor-browser-extension__browser_take_screenshot
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__cursor-browser-extension__browser_wait_for
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__cw__
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__datadog-mcp__aggregate_datadog_ci_pipeline_events
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__datadog-mcp__aggregate_datadog_test_events
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__datadog-mcp__get_datadog_code_coverage_branch_summary
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__datadog-mcp__get_datadog_code_coverage_commit_summary
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__datadog-mcp__get_datadog_flaky_tests
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__datadog-mcp__get_prs_by_head_branch
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__datadog-mcp__search_datadog_ci_pipeline_events
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__datadog-mcp__search_datadog_logs
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__datadog-mcp__search_datadog_test_events
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__datadog-mcp__search_pr_insights
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__dbt__get_lineage
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__dbt__get_lineage_dev
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__domscribe__
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__exa__
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__exa__deep_researcher_check
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__exa__deep_researcher_start
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__feishu__batch_create_feishu_blocks
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__feishu__create_feishu_document
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__feishu__create_feishu_folder
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__feishu__create_feishu_table
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__feishu__delete_feishu_document_blocks
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__feishu__get_feishu_document_blocks
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__feishu__get_feishu_document_info
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__feishu__get_feishu_folder_files
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__feishu__search_feishu_documents
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__fetch__fetch_html
MCP toolGeneral-purpose HTTP client tool. Makes requests to URLs and returns the response body. Used for API calls, downloading files, and checking endpoints.
mcp__fetch__fetch_json
MCP toolGeneral-purpose HTTP client tool. Makes requests to URLs and returns the response body. Used for API calls, downloading files, and checking endpoints.
mcp__fetch__fetch_markdown
MCP toolGeneral-purpose HTTP client tool. Makes requests to URLs and returns the response body. Used for API calls, downloading files, and checking endpoints.
mcp__fetch__fetch_readable
MCP toolGeneral-purpose HTTP client tool. Makes requests to URLs and returns the response body. Used for API calls, downloading files, and checking endpoints.
mcp__fetch__fetch_txt
MCP toolGeneral-purpose HTTP client tool. Makes requests to URLs and returns the response body. Used for API calls, downloading files, and checking endpoints.
mcp__fetch__fetch_youtube_transcript
MCP toolGeneral-purpose HTTP client tool. Makes requests to URLs and returns the response body. Used for API calls, downloading files, and checking endpoints.
mcp__figma-remote-mcp__get_metadata
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__figma-remote-mcp__get_variable_defs
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__firecrawl__
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__firecrawl__firecrawl_agent
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__firecrawl__firecrawl_crawl
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__firecrawl__firecrawl_extract
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__firecrawl__firecrawl_map
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__firecrawl__firecrawl_scrape
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__git__git_diff_unstaged
MCP toolMCP server for Git version control operations. Provides structured access to repository status, diffs, logs, branches, and commit operations.
mcp__git__git_status
MCP toolMCP server for Git version control operations. Provides structured access to repository status, diffs, logs, branches, and commit operations.
mcp__github__create_pull_request
MCP toolMCP server for GitHub API operations. Manages repositories, issues, pull requests, and workflows directly from an AI coding session.
mcp__github__get_issue
MCP toolMCP server for GitHub API operations. Manages repositories, issues, pull requests, and workflows directly from an AI coding session.
mcp__github__get_pull_request_comments
MCP toolMCP server for GitHub API operations. Manages repositories, issues, pull requests, and workflows directly from an AI coding session.
mcp__github__get_pull_request_reviews
MCP toolMCP server for GitHub API operations. Manages repositories, issues, pull requests, and workflows directly from an AI coding session.
mcp__github__get_pull_request_status
MCP toolMCP server for GitHub API operations. Manages repositories, issues, pull requests, and workflows directly from an AI coding session.
mcp__github__list_issues
MCP toolMCP server for GitHub API operations. Manages repositories, issues, pull requests, and workflows directly from an AI coding session.
mcp__github__merge_pull_request
MCP toolMCP server for GitHub API operations. Manages repositories, issues, pull requests, and workflows directly from an AI coding session.
mcp__github__search_issues
MCP toolMCP server for GitHub API operations. Manages repositories, issues, pull requests, and workflows directly from an AI coding session.
mcp__github__search_pull_requests
MCP toolMCP server for GitHub API operations. Manages repositories, issues, pull requests, and workflows directly from an AI coding session.
mcp__gmail__
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__google-calendar__create-event
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__google-calendar__delete-event
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__google-calendar__find-free-time
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__google-calendar__list-events
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__google-calendar__manage-accounts
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__google-calendar__update-event
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__google-scholar__get_author_info
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__google-sheets__create_spreadsheet
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__grepai__grepai_search
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__harness__harness_mem_
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__harness__harness_mem_record_checkpoint
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__harness__harness_mem_resume_pack
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__hex-graph__find_implementations
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__hex-graph__trace_dataflow
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__hex-graph__trace_paths
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__hex-line__bulk_replace
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__huggingface__get-daily-papers
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__huggingface__get-paper-info
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__huggingface__search-models
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__ide__executeCode
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__interactive_review__start_review
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__jk__append_ai_journal
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__jk__create_note
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__jk__edit_note
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__jk__list_notes
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__jk__list_tags
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__jk__patch_note
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__jk__rag_search
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__jk__read_note
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__jk__recent_journals
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__jk__reindex
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__lark__bitable_v1_app_create
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__lark__bitable_v1_appTable_create
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__lark__bitable_v1_appTable_list
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__lark__bitable_v1_appTableField_list
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__lark__bitable_v1_appTableRecord_create
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__lark__bitable_v1_appTableRecord_search
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__lark__bitable_v1_appTableRecord_update
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__lark__im_v1_chat_list
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__lark__im_v1_message_create
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__linear
MCP toolProject management tool for software teams. The MCP server reads and creates issues, cycles, and project updates without leaving the editor.
mcp__linear-server__
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__linear-server__create_project
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__linear-server__get_issues
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__linear-server__get_project
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__linear-server__list_comments
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__linear-server__list_projects
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__linear-server__list_teams
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__linear__get_issue
MCP toolProject management tool for software teams. The MCP server reads and creates issues, cycles, and project updates without leaving the editor.
mcp__linear__get_project
MCP toolProject management tool for software teams. The MCP server reads and creates issues, cycles, and project updates without leaving the editor.
mcp__linear__list_issues
MCP toolProject management tool for software teams. The MCP server reads and creates issues, cycles, and project updates without leaving the editor.
mcp__linear__list_projects
MCP toolProject management tool for software teams. The MCP server reads and creates issues, cycles, and project updates without leaving the editor.
mcp__linear__list_teams
MCP toolProject management tool for software teams. The MCP server reads and creates issues, cycles, and project updates without leaving the editor.
mcp__linear__save_project
MCP toolProject management tool for software teams. The MCP server reads and creates issues, cycles, and project updates without leaving the editor.
mcp__mcp-server-firecrawl__
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__memory-palace__add_alias
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__memory-palace__compact_context
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__memory-palace__create_memory
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__memory-palace__delete_memory
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__memory-palace__index_status
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__memory-palace__read_memory
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__memory-palace__rebuild_index
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__memory-palace__search_memory
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__memory-palace__update_memory
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__memorylane__get_pattern_details
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__memorylane__list_patterns
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__mineru-document-explorer__
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__mise__
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__mobile-mcp__
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__motherduck__execute_query
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__my-plugin-mcp__my_plugin
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__nx-mcp__nx_generator_schema
MCP toolMCP server for Nx monorepo tooling. Provides workspace graph analysis, task orchestration, and project dependency information for Nx-managed repositories.
mcp__nx-mcp__nx_generators
MCP toolMCP server for Nx monorepo tooling. Provides workspace graph analysis, task orchestration, and project dependency information for Nx-managed repositories.
mcp__opentrace_oss__get_node
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__opentrace_oss__get_stats
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__opentrace_oss__list_nodes
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__opentrace_oss__search_graph
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__opentrace_oss__traverse_graph
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__pencil__replace_all_matching_properties
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__pencil__search_all_unique_properties
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__perplexity__perplexity_ask
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__perplexity__perplexity_reason
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__perplexity__perplexity_research
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__perplexity__perplexity_search
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__phantom-scheduler__phantom_schedule
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__pikiclaw-browser__browser_click
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__pikiclaw-browser__browser_evaluate
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__pikiclaw-browser__browser_fill_form
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__pikiclaw-browser__browser_navigate
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__pikiclaw-browser__browser_press_key
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__pikiclaw-browser__browser_run_code
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__pikiclaw-browser__browser_snapshot
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__pikiclaw-browser__browser_take_screenshot
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__pikiclaw-browser__browser_type
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__playwright-test__test_debug
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__playwright-test__test_list
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__playwright-test__test_run
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__playwright__browser_console_messages
MCP toolBrowser automation framework by Microsoft. Provides headless Chrome, Firefox, and WebKit control for testing web applications, taking screenshots, and scraping pages.
mcp__playwright__browser_hover
MCP toolBrowser automation framework by Microsoft. Provides headless Chrome, Firefox, and WebKit control for testing web applications, taking screenshots, and scraping pages.
mcp__playwright__browser_install
MCP toolBrowser automation framework by Microsoft. Provides headless Chrome, Firefox, and WebKit control for testing web applications, taking screenshots, and scraping pages.
mcp__playwright__browser_navigate_back
MCP toolBrowser automation framework by Microsoft. Provides headless Chrome, Firefox, and WebKit control for testing web applications, taking screenshots, and scraping pages.
mcp__playwright__browser_resize
MCP toolBrowser automation framework by Microsoft. Provides headless Chrome, Firefox, and WebKit control for testing web applications, taking screenshots, and scraping pages.
mcp__playwright__browser_select_option
MCP toolBrowser automation framework by Microsoft. Provides headless Chrome, Firefox, and WebKit control for testing web applications, taking screenshots, and scraping pages.
mcp__playwright__browser_tab_close
MCP toolBrowser automation framework by Microsoft. Provides headless Chrome, Firefox, and WebKit control for testing web applications, taking screenshots, and scraping pages.
mcp__playwright__browser_tab_list
MCP toolBrowser automation framework by Microsoft. Provides headless Chrome, Firefox, and WebKit control for testing web applications, taking screenshots, and scraping pages.
mcp__playwright__browser_tab_new
MCP toolBrowser automation framework by Microsoft. Provides headless Chrome, Firefox, and WebKit control for testing web applications, taking screenshots, and scraping pages.
mcp__playwright__browser_tab_select
MCP toolBrowser automation framework by Microsoft. Provides headless Chrome, Firefox, and WebKit control for testing web applications, taking screenshots, and scraping pages.
mcp__plugin_claude-code-settings_exa__get_code_context_exa
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__plugin_claude-code-settings_exa__web_search_exa
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__plugin_collaborative-canvas_canvas__add_to_canvas
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__plugin_collaborative-canvas_canvas__capture_screenshot
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__plugin_collaborative-canvas_canvas__close_canvas
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__plugin_collaborative-canvas_canvas__close_widget
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__plugin_collaborative-canvas_canvas__delete_canvases
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__plugin_collaborative-canvas_canvas__export_canvas
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__plugin_collaborative-canvas_canvas__get_canvas_state
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__plugin_collaborative-canvas_canvas__list_canvases
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__plugin_collaborative-canvas_canvas__listen
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__plugin_collaborative-canvas_canvas__open_canvas
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__plugin_collaborative-canvas_canvas__save_canvas
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__plugin_collaborative-canvas_canvas__update_canvas
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__plugin_meta_mux__get_phabricator_diff_details
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__plugin_meta_mux__search_files
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__plugin_nx_nx-mcp__ci_information
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__plugin_nx_nx-mcp__update_self_healing_fix
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__plugin_power-pages_playwright__browser_console_messages
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__plugin_power-pages_playwright__browser_evaluate
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__plugin_power-pages_playwright__browser_network_requests
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__plugin_power-pages_playwright__browser_resize
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__plugin_power-pages_playwright__browser_take_screenshot
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__plugin_power-pages_playwright__browser_wait_for
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__pricing__
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__prompt-learning__get_analytics
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__prompt-learning__optimize_prompt
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__prompt-learning__record_feedback
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__prompt-learning__retrieve_prompts
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__prompt-learning__suggest_improvements
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__Ref
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__Ref__
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__scitex__browser_
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__shadcn__
MCP toolMCP server for the shadcn/ui component library. Surfaces component APIs, usage examples, and installation commands for Tailwind-based React UI components.
mcp__specbox-engine__
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__stitch__
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__supabase__apply_migration
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__supabase__execute_sql
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__supabase__list_tables
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__tauri__webview_interact
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__tauri__webview_keyboard
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__tauri__webview_wait_for
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__telegram-mcp__
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__uidotsh__uidotsh_fetch
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__vanta__controls
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__vanta__risks
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__vanta__tests
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__vanta__vulnerabilities
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__vercel__
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp__vibma__connection
MCP toolTool provided through a Model Context Protocol server. Found in 1 skill across indexed repositories.
mcp_chirp3-hd_list_chirp_voices mcp_chirp3-hd_chirp_tts mcp_lyria_lyria_generate_music mcp_avtool_ffmpeg_layer_audio_files mcp_avtool_ffmpeg_adjust_volume mcp_avtool_ffmpeg_convert_audio_wav_to_mp3 mcp_avtool_ffmpeg_get_media_info mcp_avtool_ffmpeg_concatenate_media_files mcp_gemini-multimodal_gemini_audio_tts mcp_gemini-multimodal_list_gemini_voices mcp_nanobanana_nanobanana_image_generation
Declared toolTool referenced in 1 skill across indexed repositories.
mcp_nanobanana_nanobanana_image_generation
Declared toolTool referenced in 1 skill across indexed repositories.
mcp_veo_veo_t2v mcp_veo_veo_i2v mcp_veo_veo_extend_video mcp_veo_veo_first_last_to_video mcp_veo_veo_ingredients_to_video mcp_avtool_ffmpeg_overlay_image_on_video mcp_avtool_ffmpeg_concatenate_media_files mcp_avtool_ffmpeg_video_to_gif mcp_avtool_ffmpeg_combine_audio_and_video mcp_avtool_ffmpeg_get_media_info
Declared toolTool referenced in 1 skill across indexed repositories.
mcp_veo_veo_t2v mcp_veo_veo_i2v mcp_veo_veo_extend_video mcp_veo_veo_first_last_to_video mcp_veo_veo_ingredients_to_video mcp_lyria_lyria_generate_music mcp_gemini-multimodal_gemini_audio_tts mcp_nanobanana_nanobanana_image_generation mcp_avtool_ffmpeg_concatenate_media_files mcp_avtool_ffmpeg_get_media_info mcp_avtool_ffmpeg_combine_audio_and_video
Declared toolTool referenced in 1 skill across indexed repositories.
MCPSearch
Declared toolTool referenced in 1 skill across indexed repositories.
memory-save memory-get
Declared toolTool referenced in 1 skill across indexed repositories.
memory-save memory-get memory-clear memory-view memory-search
Declared toolTool referenced in 1 skill across indexed repositories.
memory_get
Declared toolTool referenced in 1 skill across indexed repositories.
memory_list
Declared toolTool referenced in 1 skill across indexed repositories.
memory_nav
Declared toolTool referenced in 1 skill across indexed repositories.
memory_write
Declared toolTool referenced in 1 skill across indexed repositories.
message_send
Declared toolTool referenced in 1 skill across indexed repositories.
motion_detection
Declared toolTool referenced in 1 skill across indexed repositories.
MUST
Declared toolTool referenced in 1 skill across indexed repositories.
notification_prefs
Declared toolTool referenced in 1 skill across indexed repositories.
openapi-generator
Declared toolTool referenced in 1 skill across indexed repositories.
pa_run
Declared toolTool referenced in 1 skill across indexed repositories.
paper-search
Declared toolTool referenced in 1 skill across indexed repositories.
plugin-testing
Declared toolTool referenced in 1 skill across indexed repositories.
process_manager
Declared toolTool referenced in 1 skill across indexed repositories.
process_next
Declared toolTool referenced in 1 skill across indexed repositories.
python_code
Declared toolTool referenced in 1 skill across indexed repositories.
python_code javascript_code
Declared toolTool referenced in 1 skill across indexed repositories.
query_custom_identifiers update_custom_identifiers recognize_media
Declared toolTool referenced in 1 skill across indexed repositories.
query_transfer_history delete_transfer_history recognize_media transfer_file search_media
Declared toolTool referenced in 1 skill across indexed repositories.
read_file edit_file write_file think_tool
Declared toolTool referenced in 1 skill across indexed repositories.
read_file list_dir search_web browser_subagent
Declared toolTool referenced in 1 skill across indexed repositories.
read_file list_dir search_web read_url_content
Declared toolTool referenced in 1 skill across indexed repositories.
read_file write_to_file run_command
Declared toolTool referenced in 1 skill across indexed repositories.
readFile
Declared toolTool referenced in 1 skill across indexed repositories.
readPaper
Declared toolTool referenced in 1 skill across indexed repositories.
reminders-create
Declared toolTool referenced in 1 skill across indexed repositories.
repos/apple-oss-distributions
Declared toolTool referenced in 1 skill across indexed repositories.
repos/Automattic/pocket-casts-android/
Declared toolTool referenced in 1 skill across indexed repositories.
repos/patternfly/patternfly-org/git/trees/
Declared toolTool referenced in 1 skill across indexed repositories.
repos/peteonrails/voxtype/discussions:read-only
Declared toolTool referenced in 1 skill across indexed repositories.
repos/redhat-documentation/supplementary-style-guide/git/trees/
Declared toolTool referenced in 1 skill across indexed repositories.
REQUIRED
Declared toolTool referenced in 1 skill across indexed repositories.
Retry-AzureDevOpsFailedStages.ps1
Declared toolTool referenced in 1 skill across indexed repositories.
sandbox_execute_code
Declared toolTool referenced in 1 skill across indexed repositories.
ScheduleWakeup
Declared toolTool referenced in 1 skill across indexed repositories.
screen_control_automation
Declared toolTool referenced in 1 skill across indexed repositories.
scripts/agent-reviews.js
Declared toolTool referenced in 1 skill across indexed repositories.
scripts/switch_cli.sh
Declared toolTool referenced in 1 skill across indexed repositories.
search-regulations
Declared toolTool referenced in 1 skill across indexed repositories.
search-regulations generate-report
Declared toolTool referenced in 1 skill across indexed repositories.
search-slack
Declared toolTool referenced in 1 skill across indexed repositories.
searchArticles
Declared toolTool referenced in 1 skill across indexed repositories.
shadcn-svelte@latest
Declared toolTool referenced in 1 skill across indexed repositories.
shell_execute
Declared toolTool referenced in 1 skill across indexed repositories.
show_nearby_places
Declared toolTool referenced in 1 skill across indexed repositories.
similarity-
Declared toolTool referenced in 1 skill across indexed repositories.
similarity-mbt
Declared toolTool referenced in 1 skill across indexed repositories.
similarity-py
Declared toolTool referenced in 1 skill across indexed repositories.
similarity-rs
Declared toolTool referenced in 1 skill across indexed repositories.
similarity-ts
Declared toolTool referenced in 1 skill across indexed repositories.
skill_create
Declared toolTool referenced in 1 skill across indexed repositories.
skill_list
Declared toolTool referenced in 1 skill across indexed repositories.
skill_refresh
Declared toolTool referenced in 1 skill across indexed repositories.
skill_search
Declared toolTool referenced in 1 skill across indexed repositories.
skill_update
Declared toolTool referenced in 1 skill across indexed repositories.
spark-submit
Declared toolTool referenced in 1 skill across indexed repositories.
spec-gen-execute-refactor
Declared toolTool referenced in 1 skill across indexed repositories.
stripe_
Declared toolTool referenced in 1 skill across indexed repositories.
supabase-
Declared toolTool referenced in 1 skill across indexed repositories.
system-config.json
Declared toolTool referenced in 1 skill across indexed repositories.
tak_cli
Declared toolTool referenced in 1 skill across indexed repositories.
task_manager
Declared toolTool referenced in 1 skill across indexed repositories.
tavily-web-search
Declared toolTool referenced in 1 skill across indexed repositories.
temp/repo-cache/
Declared toolTool referenced in 1 skill across indexed repositories.
temporal_clear
Declared toolTool referenced in 1 skill across indexed repositories.
temporal_get_prompt
Declared toolTool referenced in 1 skill across indexed repositories.
temporal_list_pending
Declared toolTool referenced in 1 skill across indexed repositories.
temporal_respond
Declared toolTool referenced in 1 skill across indexed repositories.
temporal_scan_workflows
Declared toolTool referenced in 1 skill across indexed repositories.
temporal_update_canvas
Declared toolTool referenced in 1 skill across indexed repositories.
temporal_watch
Declared toolTool referenced in 1 skill across indexed repositories.
tool_catalog
Declared toolTool referenced in 1 skill across indexed repositories.
trigger_schedule_now
Declared toolTool referenced in 1 skill across indexed repositories.
trust-cli.ts
Declared toolTool referenced in 1 skill across indexed repositories.
tui-test
Declared toolTool referenced in 1 skill across indexed repositories.
twitter_search
Declared toolTool referenced in 1 skill across indexed repositories.
twitter_send
Declared toolTool referenced in 1 skill across indexed repositories.
twitter_user
Declared toolTool referenced in 1 skill across indexed repositories.
UnknownTool
Declared toolTool referenced in 1 skill across indexed repositories.
update-config.mjs
Declared toolTool referenced in 1 skill across indexed repositories.
update-snapshots
Declared toolTool referenced in 1 skill across indexed repositories.
update-vulndb
Declared toolTool referenced in 1 skill across indexed repositories.
update_schedule
Declared toolTool referenced in 1 skill across indexed repositories.
whatsapp_db
Declared toolTool referenced in 1 skill across indexed repositories.
whatsapp_send
Declared toolTool referenced in 1 skill across indexed repositories.
wifi_automation
Declared toolTool referenced in 1 skill across indexed repositories.
workspace-mcp
Declared toolTool referenced in 1 skill across indexed repositories.
write_todos
Declared toolTool referenced in 1 skill across indexed repositories.
~/.claude/skills/extract-wisdom/scripts/wisdom.py
Declared toolTool referenced in 1 skill across indexed repositories.
~/.config/home-assistant/.env
Declared toolTool referenced in 1 skill across indexed repositories.
命令验证代码质量
Declared toolTool referenced in 1 skill across indexed repositories.
查阅最新文档和最佳实践
Declared toolTool referenced in 1 skill across indexed repositories.
运行
Declared toolTool referenced in 1 skill across indexed repositories.
1c-code-check-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
1c-code-metadata-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
1c-data-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
1C-docs-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
1c-forms-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
1c-graph-metadata-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
1c-ssl-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
1c-syntax-checker-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
1c-templates-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
actionbook
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
adloop
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
adm-toolkit
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
admin-db
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
adsagent
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
AfterEffectsMCP
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
agent-base
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
agent-kit
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
Agent-MCP
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
agentcore-memory
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
agents
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
agents-observe
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
agtx
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
ahrefs
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
ai-orchestrator
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
ai-software-architect
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
airbnb
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
alumnium
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
anythink
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
API specification
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
apple-calendar
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
apple-contacts
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
apple-mail
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
apple-maps
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
apple-messages
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
apple-notes
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
apple-reminders
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
arcana
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
architect-lab
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
archon-os
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
arduino
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
argocd-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
astra-db-mcp-server
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
Astro docs
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
atlas-mcp-server
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
author
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
awareness-memory
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
aws-api
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
aws-documentation
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
aws-serverless
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
azure
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
azure-devops
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
azure-sdk-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
baseplate-dev-server
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
bb-sandbox
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
bear-notes-project-local
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
bernstein
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
better-auth
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
bible-scholar-v2
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
bigquery
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
bintrail
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
bkit-analysis
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
bkit-pdca
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
bknd
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
blender
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
board
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
browser
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
browser-use
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
buckyball-dev
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
build
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
bunqueue
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
calculator
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
canva
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
canvas
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
capy
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
carbon-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
casefoundry
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
cc-workflow-studio
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
cemq
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
chainlink-safe-fetch
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
chatlog-api
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
chatwoot
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
chrome
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
chrome-devtools-mcp@latest
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
chrome-mcp-stdio
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
ckb
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
claude-code-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
claude-code-organizer
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
claude-in-chrome
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
claude-peers
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
claude_dms3-chrome-devtools
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
claudette
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
clawide
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
cloudflare-api
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
cloudflare-bindings
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
cloudflare-builds
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
cloudflare-docs
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
cloudflare-observability
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
cloudwatch
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
codag
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
code
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
code-analysis-neurovision
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
code-quality
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
codebase
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
codemogger
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
coderabbitai
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
codex
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
codex-cli
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
codex-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
colorsandfonts
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
comfy-knowledge
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
commercetools-docs
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
computer-control
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
confluent-dev
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
console-ninja
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
consul-mcp-server
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
consult-llm
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
content-creation
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
contentful
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
context-7
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
context-a8c
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
context-coder
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
context-creator
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
context-mode
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
CopilotKit MCP
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
copilotkit-docs
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
core-cs-mcp-server
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
corsair
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
cozempic
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
cpp-lsp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
crates
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
cribl
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
crush
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
css-studio
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
cupertino
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
cursor-rules-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
cve-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
cwm-roslyn-navigator
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
cynic
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
cypress-debugger
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
dagger
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
dagster
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
daisyui-blueprint
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
daloopa
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
daloopa-docs
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
dart-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
dart-mcp-server
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
dash-api
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
data-hub
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
data-table-drizzle
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
data-table-infinite
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
database-postgresql
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
databricks
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
dataverse
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
date-fns
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
db
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
dbt
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
decision-memory
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
desktop-commander
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
dev
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
dev3000
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
develocity
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
devrag
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
discord-monitoring-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
docling-mcp-server
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
docs-cloudflare-workerd
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
docs-cloudflare-workers-sdk
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
docs-hydrogen
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
docs-langchain-reference
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
docs-mintlify
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
docs-rag
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
docs-react
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
docs-react-router
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
docs-remix
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
docs-shopify-cli
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
docs-vite
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
docs-xstate
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
docusign
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
domscribe
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
drawio
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
dsfr
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
dungeonmaster
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
edison-pal
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
electron
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
elementor-mcp-local
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
elena
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
elicit
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
Tool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
episodic-memory
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
evalview
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
everything
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
everything-search
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
evolink
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
Exa AI (搜索)
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
excel
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
executor-stdio
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
expect
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
experience-hub
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
f2c-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
factor-hub
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
factorio-learning-env
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
fast-markdown
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
fastled
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
fastmail
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
fastproxy
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
fastproxy-channel
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
ferryhopper
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
fetch-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
fetch-medical
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
fff
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
figma-dev-mode-mcp-server
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
figma-local-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
figma-remote-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
filesystem-assets
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
filesystem-core
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
finance-research-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
firefox-devtools-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
fireworks
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
fish-audio
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
flatbuffers Docs
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
fluree-memory
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
flutter-inspector
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
forest-grove
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
forge_extension
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
forgejo-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
formentera-snowflake
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
framer
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
freee-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
freee-sign-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
frida
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
gaode
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
gemini-api-docs-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
generaltranslation
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
generative-media
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
genkit
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
geo-optimizer
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
git-clarity
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
gitbutler
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
github-agentic-workflows
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
github-board
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
github-repo-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
gitnexus
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
gke
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
gkg
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
glama
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
gmail
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
go-language-server
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
godot-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
goodhope
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
google-calendar
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
google-scholar
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
google-trends-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
gopls-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
gradle
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
graph-of-skills
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
graphiti
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
graymatter
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
greptile
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
guidelines
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
gyoshu-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
haven-test
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
heady
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
heroui-react
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
HooksMCP
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
hospitable
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
http-server
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
huggingface
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
ibm-baw-mcp-server
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
ibm-decision-intelligence-mcp-server
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
ibm-odm-decision-mcp-server
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
ibm_watsonxdata_local_mcp_server
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
ibm_watsonxdata_remote_mcp_server
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
ibmi-mcp-server
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
ide
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
idea-mcp-server (project root)
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
idea-reality
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
indeed
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
inferencemax-repos
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
infisical
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
insforge
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
intercom
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
intlayer
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
intlayer-sse
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
ios-simulator
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
jactus
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
jaf
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
javadocs
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
jb-youtrack-mcp-server (project root)
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
jina
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
jira
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
js-dev
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
json-render
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
jupyter
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
just-prompt
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
k2
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
kiwi
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
knip
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
knowns
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
kraken
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
kubernetes
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
kubeshark
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
lean-lsp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
leeroopedia
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
leonardo
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
letsfg
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
libbpf Docs
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
lichtfeld
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
lightdash-docs
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
lighthouse
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
liteapi
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
llm-review
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
localhost
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
locket
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
logisticsx
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
loki-mode
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
loli-heap
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
lsmcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
lucid
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
lucide-icons
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
lumen
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
lyra-gmail
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
maa-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
maestro
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
magic-ui
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
maz-ui
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
mcp-agent-mail
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
mcp-deepwiki
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
mcp-deepwiki-live
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
mcp-feedback-enhanced
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
mcp-language-server-docs
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
mcp-taskmanager
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
mcp-use-docs
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
mcp-vector-search
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
mcp-windbg
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
MCP_DOCKER
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
mcp_excalidraw
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
mediawiki-mcp-server
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
medical-mcps
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
memory-educational
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
meshtastic
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
microsoft.docs.mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
microsoftdocs-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
mill
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
mim
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
minimax
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
mintlify
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
mnemo
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
mobile-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
moddevmcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
monday
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
morphllm
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
motion
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
moz
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
mps-mcp-server (project root)
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
multiomics-kg
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
n8n-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
nanobanana-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
native-devtools
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
neo4j
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
neon
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
newsblur
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
newsblur-dev
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
nextjs-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
ng-diagram-docs
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
nightwatch
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
nodejs-api-docs
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
note-hub
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
nothumanallowed
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
notionApi
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
notionMCP
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
novel
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
nowledge-mem
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
nrepl
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
nuget
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
nuxt-docs
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
nuxt-hub
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
observability
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
obsidian-mcp-server-http
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
obsidian-mcp-server-stdio
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
octo-browser
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
oksskolten
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
one-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
open-ontologies
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
openaiDeveloperDocs
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
opencode
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
openmc-code-tools
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
openpocket-emulator
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
opensaas-stack
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
openskill-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
openzeppelin
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
ouroboros
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
oxbow
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
paintswap-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
palomatika-db
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
paper
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
paperless-rag
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
patrol
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
pce-memory
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
pdf-reader
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
pepper
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
pg-aiguide
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
phoenix-builder
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
php-bilibili-danmu Docs
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
pinion
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
pinner-mcp-stdio-server
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
playwright-headed
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
playwright-simple
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
playwriter
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
polar-sandbox
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
polymarket
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
port-kill
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
postgres-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
posthog
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
PowerBIQuery
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
pps-caia
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
pps-lyra
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
prefect
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
promptfoo
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
pulp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
pulse
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
pushover
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
pySigma Docs
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
python-lsp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
pyxel-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
qdrant
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
quarto-hub
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
query-logs-db
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
RadonAi
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
railway
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
readwise
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
recallnest
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
redis
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
redis-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
Ref
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
regle-mcp-server
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
remotion
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
remotion-documentation-own
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
render
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
renderdoc
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
replay
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
research-hub
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
resend-api
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
resend-dev
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
resolume-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
responsible-vibe-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
robloxstudio-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
rs-agent
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
rubyevents
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
ruflo
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
rust
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
rust-analyzer
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
rust-ui
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
Saleor GraphQL API
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
sanity
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
scope
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
se-ranking
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
seed-design
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
semiotic
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
semrush
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
Sequential Thinking
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
serena_shared
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
server
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
server-puppeteer
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
session-orchestrator
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
shadcn-vue
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
Shrimp Task Manager
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
sigma Docs
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
sigma-specification Docs
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
signals
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
silo
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
similarweb
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
sistrix
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
skill-seekers
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
skiplagged
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
slop-guard-dev
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
slope
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
smartcart
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
smrt-dev-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
smrt-docs-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
social_media
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
soleil-ai-review-engine
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
spacectl
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
spacecurve
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
speak_when_done
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
spec-workflow
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
spectral
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
squire
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
ssh
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
st
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
st-http
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
stdio
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
stdio-full
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
stitch
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
stm32
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
storybook-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
strategy-hub
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
sub-agents
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
substrate
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
supabase-all-projects
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
supabase-local
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
supabase-self-hosted
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
swarm-orchestrator
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
swordswarm
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
synthora-agentic-pipeline
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
system
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
t
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
t27-traceability
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
tailscale
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
TalkToFigma
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
task-master
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
taskyou
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
tauri-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
tavily-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
teamwork
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
telegram-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
temporal-playground
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
terminusdb
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
terraform
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
terraform-mcp-server
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
test
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
textlint
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
threlte
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
tidy3d
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
tim-mcp-server
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
time-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
tirith-gateway
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
token-optimizer
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
Tool Manager MCP
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
toolkami-fs
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
total-recall
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
transaction-forensics
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
trello
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
trilium
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
trinity
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
trivago
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
truck-cad
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
trycompai
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
tui-harness
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
twilio
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
typescript-language-server
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
typescript-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
ui-thing
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
ultimate-slice
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
ultimate-slice-attach
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
ultimate-slice-python-socket
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
ultra-search
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
umbraco-cms
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
unityMCP
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
unrealMCP
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
user-profile-app
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
vault-mcp-server
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
vault-radar-mcp-server
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
vault_sync
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
vector-graph
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
vector-os-nano
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
vendor-next
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
very-good-cli
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
vet-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
vibeship-scanner
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
vite-plus
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
voicemode
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
voipi
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
vscode-inspector
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
wakalat-ai
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
wallaby
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
waveform-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
webflow
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
webiny
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
wechat_mcp_server
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
weixin
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
welcomecrm-context
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
wheeler_core
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
wheeler_mutations
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
wheeler_ops
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
wheeler_query
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
workflow
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
wt
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
xc-build
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
xc-setup
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
xiaohongshu-mcp
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
xiaohongshuritter
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
youtrack
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
youtrack-agent
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
youtube
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
zen
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
zep-documentation
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
zig-docs
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
zoplicate-codebase
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
zoplicate-workflow
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.
zotero-reference
MCP toolTool provided through a Model Context Protocol server. Found in 1 MCP config across indexed repositories.