Skip to main content
Glama
606,552 tools. Updated 2026-09-24 09:02

"A tool or information related to TickTick (滴答清单)" matching MCP tools:

  • 【需要登录】【何时用】用户随口给了一条以后每场报名都要用的信息(「我微信是 xxx」「团队 3 个人」「所在城市杭州」),先落进跨表单复用的**报名资料覆盖层**,下次报任何一场都会自动带出来。 【组合链】get_signup_gaps 拿到 missingCombined(跨场去重后的待答清单)→ 问用户 → 本工具一次性写进覆盖层 → 之后每场 submit_signup 都不用再问。key 必须用 get_signup_activity / get_signup_gaps 返回的那个 key(跨活动稳定,别自造)。 【口径/坑】① 这里**只写报名场景的覆盖层**,绝不改主页/公司/产品本体——改那些走 update_my_profile。② 只收文本;文件类答案(BP 等)只能走 App 的上传通道,这里写进去会把已传文件的记录顶成一串文本。③ 敏感题(证件号)刻意不做跨表单记忆,别往这儿写。④ 写入的值不会回显在返回体里(只回 key),这是刻意的隐私收口。
    ConnectorNo auth
  • Read GetSign agent docs or named flow recipes. Do not use this to list tools. tools/list already has every tool name and description. This tool is for on-demand guides — remote MCP clients do not get local CLAUDE.md. No args: short index of doc paths and flow names. path: markdown for that guide (gotchas, placeholders-and-signers, flows/send_new_document, or a getsign://docs/... URI). flow: same as path=flows/{name} (e.g. send_new_document). query: matching docs, flows, and related tool names — not the full catalog.
    ConnectorOAuth
  • 【需要登录】把一批站内用户一次收进线索池,最多 20 人。幂等:已收过的原样返回,之前归档过的会复活。 【组合链】search_people / list_talent / list_broker_fresh_joiners 找人 → collect_broker_leads(userIds, tags=['0921活动']) → scan_broker_matches。 【报名单这条链只有 agent 能走】list_signup_submissions(slug, reviewStatus='ACCEPTED') → 取有 userId 的那些(匿名投递没有,跳过并如实告诉用户跳了几条)→ collect_broker_leads(userIds, tags=['<活动名>'])。⚠ **不要把报名答案抄进 note**——答卷原文不出撮合台,tags 里只放活动标识。 【口径】收自己会被拒、账号不可用的会被拒,这两种落成 skipped 不中断整批。
    ConnectorNo auth
  • Fetch full details for one skill by slug. Call AFTER search_skills or popular_skills when a user selects a specific result — do NOT batch-call for every item. Returns: name, description, category, tags, version, author, downloads, stars, install_command, homepage_url, repo_url. Error lifecycle: slug not found → {error: "Skill not found"} → fall back to search_skills with related keyword. Never guess slugs; only use slugs from prior tool results.
    ConnectorNo auth
  • Maps only stable Tier1 finding identifiers to approved Tier1 services and public resources. Call after a Tier1 score or email-domain check. Do not submit prose, URLs, customer information, or invented identifiers. This tool performs no arbitrary fetching, makes no contact request, changes nothing, and stores nothing.
    ConnectorNo auth
  • Returns the full detail of one agent template from the public Agent Library: what it captures, how the conversation runs, the integrations it typically feeds, where it sits in the library, and related templates. Behavior: - Read-only, public catalog — no workspace is needed. - Unknown slugs return an error; slugs come from agent_template_search. When to use this tool: - You picked an agent template with agent_template_search and want enough detail to describe it to the user or tailor the perspective_create brief. When NOT to use this tool: - You don't have a slug yet — use agent_template_search.
    ConnectorOAuth

Matching MCP Servers

Matching MCP Connectors

  • List the shows most related to a podcast, best first — "shows like this show". Each result carries the related show's slug, a calibrated score in (0,1], and a coarse band (strong: same beat and audience; moderate: overlapping subject or audience; weak: a loose connection) to branch on. Add `include: ["basis"]` to see WHY each pair is related: content similarity of recent episodes, shared topics, shared guests (named), same publisher, shared sponsors — use it to explain a recommendation or to keep only pairs related for the reason you care about (shared guests for booking, content for media planning). Related sets are precomputed per show from its transcripts, topic profile, guest roster, network and advertisers, restricted to the show's language. Only shows above a relatedness floor are listed, machine-generated and farmed feeds are never listed, and a publisher's duplicate feeds of one show appear once. An empty FIRST page is not an error: its `coverage` says whether the set is not computed yet, nothing cleared the floor, or the request's filters and the default policy removed everything; an empty page reached through a cursor is simply the end of the list. Not a topic browser: for shows that COVER a topic use `particle_podcast_resolve` with `topic_slug`. Not a guest lookup: for where a person has appeared use `particle_podcast_get_guest`. Not advertiser co-occurrence: use `particle_podcast_get_sponsors`. Every related show's slug feeds `particle_podcast_resolve`, `particle_podcast_list_episodes` and the other podcast tools; person slugs in the basis feed `particle_podcast_get_guest`, topic slugs feed `particle_podcast_resolve`'s `topic_slug`. For the five most related shows inline on a resolve, pass `include: ["related"]` to `particle_podcast_resolve` instead of calling this tool.
    ConnectorOAuth
  • 【需要登录】【何时用】用户说「帮我报这场」时调它。只传**这次要新填/要改的答案**:handler 先读一遍全部现值(上一版提交 + 跨表单复用层 + 主页/公司/产品推导),打上补丁后提交**全集**。 【组合链】get_signup_activity(slug) 看 viewer.missingRequired → 问用户 → 本工具 answers=[{key,value}] 提交 → 之后用 list_my_signups 跟进 reviewStatus。撞「已截止」时返回体自带替代场次(exits[].detail.alternatives)。 【口径/坑】① **省略 ≠ 清空**(客户端有确认页、agent 没有,所以不继承服务层「传了 answers 就以它为全集」那条语义)。真要清空某题,把 key 放进 clearKeys——它会连跨表单复用层那一行一起删(否则下次报别的表又被解析回来;文件行不删)。② type=file 的附件题(BP/营业执照)**agent 传不了**,会整键省略以保住已传文件,绝不许拿文件名或链接当答案。③ 合并后仍缺必填项时**不提交**,返回 missing_required_fields + 逐条要问什么,问完再调一次。④ 返回 delivery.kind='webview' 时**报名还没投到主办方源站**,站内只存了留资和代填答案——此时**逐字禁止**对用户说「已报名成功」,必须说「站内已留档,还要在主办方表单上完成提交」,并把 delivery.url 给他。⑤ 重提会以合并全集覆盖上一版。**证件号这类敏感题明文是加密存的、读不回来**:上版填过而这次没给值会直接拒(sensitive_answer_would_be_wiped,提交上去就抹成空且不可恢复)——按 exits 让用户重说一遍,或放进 clearKeys。⑥ channel 恒为 'agent',主办方看得见这笔是代提的。⑦ 挂了报名协议的场**必须**先 get_activity_agreement 念全文、拿到明确同意,再带 agreement={versionId,accept:true};这会落签署记录与审计日志,**绝不许你替用户勾**。不带就撞 activity_agreement_required(自带出口)。⑧ requiresAppActivation=true 的场只拿得到 App 激活预留位、**不落报名单**,返回 signup_reserved_pending_app_activation 而不是「已提交」。
    ConnectorNo auth
  • 【需要登录】【何时用】用户问「你们存了我哪些报名信息 / 我的微信号存的是哪个」时调它。返回跨表单复用层(报名时自动带出来的那层)里**他本人**存着的全部答案。四端都没有这一屏。 【组合链】本工具看现状 → update_my_signup_profile 改 → forget_my_signup_answers 删。 【口径/坑】① 这里是**他本人的资料**,含手机号/微信号/邮箱明文:只回给他本人,**不许转述给第三方、不许写进任何对外文本**(发给别人的自我介绍、报名答案之外的地方都不行)。② 敏感题(证件号)不做跨表单记忆,本来就不在这层。③ isFile=true 的行只给文件名,不给文件地址。④ 这层**不是**主页/公司资料,改它不影响个人主页。
    ConnectorNo auth
  • 【需要登录】【何时用】用户说「把我存的微信号删掉 / 别再自动填我的手机号」时调它,从跨表单复用层里真删掉这几行。以前只能在报名时顺手清(submit_signup 的 clearKeys),用户得先去报一场名才能删东西。 【组合链】get_my_signup_profile 看存了什么 → 把要删的 key 念给用户确认 → 本工具删。 【口径/坑】① **删了不可恢复**,发起前必须把要删的 key/题面念给用户、拿到确认。② 只删这层复用资料,**不动**已经提交出去的报名单(主办方那边看到的答案还在,那要联系主办方)。③ includeFiles 缺省 false:文件行(BP/营业执照)只在显式传 true 时才删,删的是引用、用户要重新上传才能再用——这一条更要先问清楚。
    Connector
    Destructive
    No auth
  • Get care plan material for a specific NANDA-style nursing diagnosis: its definition, related factors (the "related to" clause), defining characteristics (the "as evidenced by" clause), SMART goals, interventions, and the conditions where it is a priority. Use when a nursing student asks about a diagnosis rather than a disease, for example "risk for infection", "acute pain", "impaired gas exchange", "ineffective coping" or "risk for falls", or asks how to write a three-part diagnosis or an AEB statement. Educational reference, not medical advice.
    ConnectorNo auth
  • Get detailed information about a specific CVE. ## What this tool does Retrieves the full vulnerability record for a CVE from SecDB, including: - official description and summary - CVSS metrics (all versions available) - EPSS metadata (if present) - affected products and versions - vendor/security advisories - references and upstream sources - weakness classification (CWE) - exploit and patch information (if included in the record) All information is returned in a structured Markdown format suitable for direct display. ## When to use this tool Use this tool when the user asks: - "Give me details about CVE-XYZ." - "Which products are affected by this vulnerability?" - "Show me advisories or references for this CVE." - "Explain what this vulnerability is and how serious it is." This tool is ideal for **deep inspection of a single vulnerability**. For multiple CVEs, call the tool once per CVE. ## Inputs - **cve_id**: valid CVE identifier (`CVE-YYYY-NNNNN`). ## Outputs Markdown-formatted vulnerability information including: - detailed description - severity metrics (CVSS, vectors) - affected products list - advisory list - references - weakness (CWE) details - additional structured metadata from SecDB ## LLM usage guidelines - Always prefer this tool when the user needs factual information about a specific CVE. - If multiple CVEs are mentioned, call the tool once per CVE. - Combine with: - **`vulnerability_score`** - to enrich output with numerical CVSS/EPSS metrics - **`sightings_search`** - to check real-world exploitation, PoCs, plugins, advisories - **`ssvc_calculator`** - to compute prioritization based on the vulnerability data - Do not hallucinate product lists, advisories, or details—use what the tool returns.
    ConnectorNo auth
  • USE THIS TOOL WHEN you have a bill_id (from bills_search_bills) and want the full detail. Returns sponsors, current stage, long title, summary, and Royal Assent date if enacted. Summary text is capped per max_summary_chars — check summary_truncated in the response. AFTER calling, use parliament_search_hansard(query=bill_short_title) to find the bill's parliamentary debates, or bills_search_bills with a related keyword for adjacent bills.
    ConnectorNo auth
  • Deducts a unit from the customer's available workflow allowance. Do not call this tool when the customer is requesting assistance related to the pay wall and its subscriptions. This tool should be called after each AI response that is not pay wall related. @param customer_id: The customer's database id @return: a json object, containing the customer_id and remaining fup token balance in the "values" object
    ConnectorNo auth
  • Get detailed information about a specific MCP tool, scoped to one product. Pass both the productSlug and the tool name — same-named tools across products are distinct. Response: { tool: { normalizedName, displayName, description, inputSchema, productSlug, productName, serverQualifiedName, isRemoteCapable, accessModel, healthScore, readOnly, destructive, tier, unverified, verifiedAt, position (always 1), rank (always 1.0) } }. Errors: { error: { code: 'not_found', ... } }.
    ConnectorNo auth
  • Get detailed information about a specific MCP tool, scoped to one product. Pass both the productSlug and the tool name — same-named tools across products are distinct. Response: { tool: { normalizedName, displayName, description, inputSchema, productSlug, productName, serverQualifiedName, isRemoteCapable, accessModel, healthScore, readOnly, destructive, tier, unverified, verifiedAt, position (always 1), rank (always 1.0) } }. Errors: { error: { code: 'not_found', ... } }.
    ConnectorNo auth
  • Route a user either to the FREE indicative valuation tool or to the right PAID package for professional valuation review, buyer/investor longlist, teaser and Information Memorandum, or full deal preparation. Paid checkout occurs securely on imergea.com only after human review and consent; this tool never books or takes payment.
    ConnectorNo auth
  • Search across the SiteGPT Docs knowledge base to find relevant information, code examples, API references, and guides. Use this tool when you need to answer questions about SiteGPT Docs, find specific documentation, understand how features work, or locate implementation details. The search returns contextual content with titles and direct links to the documentation pages. If you need the full content of a specific page, use the query_docs_filesystem tool to `head` or `cat` the page path (append `.mdx` to the path returned from search — e.g. a result at `/some/page` is read with `head -200 /some/page.mdx`).
    ConnectorNo auth
  • 【需要登录】【何时用】主办方问「报了多少人 / 今天新增几个 / 有哪些做 AI 的报了」时调它。返回名单页 + 首页概览(总数 / 今日新增 / 待初审 / 渠道分布)。 【组合链·批量处置,这是 agent 对 web /pro 的碾压位】list_signup_submissions(slug, q='Agent') 拿到 items[].id → bulk_review_signup_submissions(slug, ids=[…], reviewStatus='SHORTLISTED', preview=true) 先让用户过目 → 确认后 preview=false 落库 → 剩下的人 reviewStatus='WAITLIST' 再来一次。在 web /pro 上这是勾 200 个复选框。要联系某个具体的人再用 get_signup_submission(该行 id) 单独取联系方式;要整份表格用 issue_signup_export_link。 【口径/坑】① **默认不返回答案全文**:只给每行答了哪几题的 key 列表 + 昵称。要看某几题的内容用 fields=['project_intro'] 点名投影。② **默认不返回联系方式**(手机号/微信/邮箱一律裁掉或打码),只告诉你 hasContacts / contactKinds;确实要联系人再传 includeContacts=true,或对单个人用 get_signup_submission。证件号任何时候都不解密。③ 投影出来的答案里,夹带在自由文本中的手机号/邮箱同样会被清洗掉——那是刻意的,不是数据坏了。④ limit 默认 20、上限 50(服务层能给 100,这里刻意收窄:一屏 100 行报名答案灌进上下文没有意义)。⑤ q 是跨三处搜的(匿名单字段 / 报名者账号昵称手机 / 答案全文),搜项目名和公司名最好用。⑥ status(投递态)与 reviewStatus(录不录)严格分离,别混着筛。⑦ overview 只在第一页(不带 cursor)返回。
    ConnectorNo auth
  • Search across the TheRundown API knowledge base to find relevant information, code examples, API references, and guides. Use this tool when you need to answer questions about TheRundown API, find specific documentation, understand how features work, or locate implementation details. The search returns contextual content with titles and direct links to the documentation pages. If you need the full content of a specific page, use the query_docs_filesystem tool to `head` or `cat` the page path (append `.mdx` to the path returned from search — e.g. a result at `/some/page` is read with `head -200 /some/page.mdx`).
    ConnectorNo auth
  • 【需要登录】永久删除一条线索(只做单条,不开批量)。**删了拿不回来**,发起前把这条线索的名字念给用户确认。 【口径】已经带进来真人的线索(归因已落袋)删不了,服务端会拒——那是你分账账本上的一行。想清理请优先用 update_broker_lead(patch={archived:true})。
    Connector
    Destructive
    No auth