The MCP tool directory.
Each row is one tool from one provider. Tools sharing a name across providers (e.g. search) are listed separately because they aren't interchangeable.
[ 2890 tools indexed ]
[ all tools ]
30 / 2890
crop_image
[ remote ]Crops an existing image to a specific rectangle region. Creates a new image — the original is kept. Returns the new image URL. Use get_image_dimensions first if you need to know the source image size.
cross_db_query
[ remote ]⚠️ SQL MUST BE VALID IN EVERY DIALECT YOU TARGET — stick to ANSI-ish SELECT syntax when mixing pg/mysql/mssql. `SELECT TOP 10` (mssql) or `LIMIT` (others) will fail on the wrong side. Run the same query across 2-4 connections in parallel; returns per-connection rows + errors for diffing. Canonical use cases: regional compare (`['mssql-reporting-us', 'mssql-reporting-eu']`), cross-dialect sync check (`['prod-postgres-fleet', 'prod-mysql-app']`), 3-env drift, 4-region compare. Resolve every connection name via `list_connections` first; tool fails per-connection on unknown names. ARCHITECT-tier cap: 4 connections; https://www.thinair.co/ for unlimited. [ARCHITECT tier]
current_client_context
[ remote ]Return the currently authenticated client context for this MCP server session.
da_liu_ren_calculate
[ remote ]大六壬(Da Liu Ren)是中国古代三式之一,以人事预测见长,擅长判断日常生活中的人事问题。 ## 核心概念 - **四课**:由日干、日支加上天地盘推演出的四个课位,反映事物的基本结构 - **三传**:初传(发用)、中传、末传,反映事态发展的过程(起始→发展→结局) - **十二天将**:贵人、腾蛇、朱雀、六合、勾陈、青龙、天空、白虎、太常、玄武、太阴、天后 - **月将**:太阳所在的黄道位置,加于时支之上布天盘 - **课体**:根据四课的推导方式命名(如元首课、重审课、涉害课、遥克课等) - **六亲**:父母、兄弟、子孙、妻财、官鬼——反映事物之间的生克关系 - **神煞**:驿马、桃花、华盖、天德、月德、旬空等辅助判断 ## 解读要点 1. **看课体**:课体决定了取传方法,不同课体暗示事物的性质 - 元首课:事情自上而下,领导之象 - 重审课:需要反复斟酌 - 涉害课:牵涉面广,事多阻碍 - 遥克课:远方来事,需等待 2. **看三传**: - 初传(发用):事情的起因和开端 - 中传:事情的发展过程 - 末传:事情的最终结局 - 三传递生为吉,递克为凶 3. **看天将**: - 青龙主吉庆、贵人主贵助 - 白虎主凶险、玄武主暗昧 4. **看日干旺衰**:日干代表求测人,旺则有力,衰则无力 5. **看空亡**:旬空之支所临之神/将力量减弱 ## 常见用途 - 求财:看妻财爻、青龙、生门 - 求官:看官鬼爻、朱雀、贵人 - 婚姻:看天后、六合、妻财爻 - 疾病:看天医、白虎、病符 - 出行:看驿马、太冲、天马
data_profile
[ remote ]FULL data quality + compliance report for a table: per-column stats PLUS a 0-100 health score, type-gated PII detection (email / phone / SSN / etc.), and insight warnings. Slower than `analyze_table` but returns everything needed to audit a table for ownership / compliance / onboarding. Use this when the user says 'profile' or 'quality report' or mentions PII/compliance. [BUILD tier]
datagovsg_get_collection
[ remote ]Get metadata for a specific data.gov.sg collection
datagovsg_get_dataset_metadata
[ remote ]Get metadata for a specific data.gov.sg dataset
datagovsg_initiate_download
[ remote ]Initiate download of a data.gov.sg dataset with optional filtering
datagovsg_list_collections
[ remote ]List all collections on data.gov.sg
datagovsg_list_datasets
[ remote ]List all datasets on data.gov.sg
datagovsg_poll_download
[ remote ]Check data.gov.sg download status and get download URL
datagovsg_search_dataset
[ remote ]Search for data within a data.gov.sg dataset
datasets_download
[ remote ]Generate a single-use download token for securely downloading datasets.
datasets_list
[ remote ]List and search uploaded datasets with fuzzy matching.
datasets_read
[ remote ]Read, filter, and search dataset rows. Use 'search' to find text across all columns, 'filters' for multi-column AND filtering, or filter_column for simple lookups. For row-level questions ('find rows where X'), use this — not an analysis tool.
datasets_update
[ remote ]Update dataset metadata — name, description, tags, visibility.
datasets_upload
[ remote ]Generate a secure upload token for CSV files. Returns UUID + curl command for the user.
decc_search
[ remote ]Search administrative appeal decisions (행정심판례 목록 조회). This tool searches Korean administrative appeal decisions. Administrative appeals are decisions made by administrative tribunals on appeals against government agency dispositions. Args: query: Search keyword (default "*") display: Number of results per page (max 100, default 20) page: Page number (1-based, default 1) oc: Optional OC override (defaults to env var) type: Response format - "JSON" (default), "XML", or "HTML" search: 1=사건명 (case name, default), 2=본문검색 (full text) cls: Decision type filter (재결구분코드) gana: Dictionary search (ga, na, da, ...) date: Decision date (YYYYMMDD) dpa_yd: Disposition date range (YYYYMMDD~YYYYMMDD) rsl_yd: Decision date range (YYYYMMDD~YYYYMMDD) sort: Sort order - "lasc"|"ldes"|"dasc"|"ddes"|"nasc"|"ndes" pop_yn: Popup flag - "Y" or "N" ctx: MCP context (injected automatically) Returns: Search results with administrative appeal decisions list or error Examples: Search for all decisions: >>> decc_search(type="XML") Search by keyword: >>> decc_search(query="과징금", display=10, type="XML") Search by date range: >>> decc_search(rsl_yd="20200101~20201231", type="XML")
decc_service
[ remote ]Retrieve administrative appeal decision full text (행정심판례 본문 조회). This tool retrieves the complete text of Korean administrative appeal decisions. Includes case details, disposition information, decision summary, and reasoning. Args: id: Decision sequence number (required) lm: Decision name (optional) sections: "summary" to exclude 이유 (detailed reasoning), or "full"/None for everything. Returns 사건명, 청구취지, 재결요지, 주문 in summary mode. oc: Optional OC override (defaults to env var) type: Response format - "JSON" (default), "XML", or "HTML" ctx: MCP context (injected automatically) Returns: Full administrative appeal decision text with details or error Examples: Retrieve by ID: >>> decc_service(id="243263", type="XML") Retrieve with case name: >>> decc_service(id="245011", lm="과징금 부과처분 취소청구", type="XML")
defs-autocomplete
[ remote ]Quickly retrieve all definitions matching a query. Limited to 100 results
delete_branch
[ remote ]Deletes a development branch.
deploy_edge_function
[ remote ]Deploys an Edge Function to a Supabase project. If the function already exists, this will create a new version. Example: import "jsr:@supabase/functions-js/edge-runtime.d.ts"; Deno.serve(async (req: Request) => { const data = { message: "Hello there!" }; return new Response(JSON.stringify(data), { headers: { 'Content-Type': 'application/json', 'Connection': 'keep-alive' } }); });
describe_schema
[ remote ]Discover the full database schema: tables, columns, types, primary keys, foreign keys, and indexes. Results cached 1 hour. Call with refresh=true after schema changes.
detc_search
[ remote ]Search Constitutional Court decisions (헌재결정례 목록 조회). Search Korean Constitutional Court decisions. Args: query: Search keyword (default "*" for all) display: Number of results per page (max 100, default 20) page: Page number (1-based, default 1) oc: Optional OC override (defaults to env var) type: Response format - "JSON" (default), "XML", or "HTML" search: Search type (1=decision name, 2=full text, default 1) gana: Dictionary search (ga, na, da, ...) sort: Sort order - "lasc"|"ldes"|"dasc"|"ddes"|"nasc"|"ndes"|"efasc"|"efdes" date: Final date (YYYYMMDD) ed_yd: Final date range (YYYYMMDD~YYYYMMDD) nb: Case number pop_yn: Popup flag ("Y" or "N") Returns: Search results with Constitutional Court decision list or error Examples: Search for decisions mentioning "벌금": >>> detc_search(query="벌금", display=10) Search by date: >>> detc_search(date=20150210)
detc_service
[ remote ]Retrieve Constitutional Court decision full text (헌재결정례 본문 조회). Args: id: Constitutional Court decision sequence number (헌재결정례일련번호) lm: Decision name (optional) sections: "summary" to exclude 전문 (full text), or "full"/None for everything. **Recommended: "summary" for PlayMCP** to stay under 20KB. oc: Optional OC override type: Response format - "JSON" (default), "XML", or "HTML" Returns: Full Constitutional Court decision text or error Examples: >>> detc_service(id="58386") >>> detc_service(id="58386", sections="summary")
detect_anomalies
[ remote ]Scan a table for unusual patterns: volume drops/spikes, data gaps, value concentration, high null rates, stale data. Severity-ranked alerts. Tables > 100k rows use a sampled path (~5%) — when a finding has `sampled:true`, surface it to the user with a hedge like 'based on a ~5% sample' rather than presenting the number as exact. Dialect-aware: TABLESAMPLE SYSTEM on postgres, TABLESAMPLE PERCENT on mssql, WHERE RAND() on mysql.
direct_api_call
[ remote ]Call a raw Blockscout API endpoint for advanced or chain-specific data. Do not include query strings in ``endpoint_path``; pass all query parameters via ``query_params`` to avoid double-encoding. **SUPPORTS PAGINATION**: If response includes 'pagination' field, use the provided next_call to get additional pages. Returns: ToolResponse[Any]: Must return ToolResponse[Any] (not ToolResponse[BaseModel]) because specialized handlers can return lists or other types that don't inherit from BaseModel. The dispatcher system supports flexible data structures.
direct_hire
[ remote ]Get the wallet address and hiring details for a skill listing — skipping the job board entirely. Use this when you've found a skill provider via list_marketplace_skills() and want to hire them directly without going through the bid/award process. Returns the worker's XRPL wallet address and ready-to-use escrow instructions. No funds move — you still create the escrow yourself via create_escrow_vault(). Typical flow: 1. list_marketplace_skills() — browse and find a provider 2. direct_hire(skill_id) — get their wallet address + escrow instructions 3. create_escrow_vault(worker_address=..., amount_xrp=...) — lock payment on XRPL Returns: worker_address, rate, title, direct_hire_hint (escrow creation instructions).
directories.delete
[ remote ]Permanently deletes an existing directory. It cannot be undone.
directories.get
[ remote ]Get the details of an existing directory.