Skip to main content
Glama

独行录 / opcmenu

融资双透镜(找投资人 / 找项目)

list_funding
Read-onlyIdempotent

【何时用】一个工具两个透镜,用 side 切:side=investor 找投资人(个人/产投/机构),side=project 找在融资的项目。用户说「帮我找看 AI 应用的天使」走前者,「最近有哪些一人公司在融钱」走后者。

【组合链】items[].user.id → get_creator 看完整主页 → start_conversation 开聊(开聊走每日额度,撞 429 会直接返回「怎么办」的出口,别重试);user.id → follow_creator 先关注不打扰;items[].company.slug → get_company;side=project 时 items[].product.slug → get_product。想让投资人反过来找你,用 set_my_role_profile(fundraising) 把自己挂上这个榜。

【口径/坑】 · 轮次(round)是对自由文本做的宽松包含匹配,不是结构化字段——「A 轮」「A」「Pre-A」全靠字面碰。别对用户吹「精确筛选」,也别拿它当统计口径。参考写法:种子 / 天使 / Pre-A / A 轮 / B 轮及以后。 · side=investor:老账号 / 运营种子机构号大多没填结构化 investor,type 是从 personaTags + canOffer 里出来的(只用于筛选展示,不反写)。所以 type 筛出来的结果里有推断值,不是本人自报。 · side=project:主召回是 roleProfile.fundraising.active=true,另外补量了「发了 FINANCING 需求的人」——那批人 fundraising 会是 null 而 financingNeed 有值,别当数据缺失。 · BP 拿不到:项目卡只给 hasBp 布尔(有没有传过 BP),别人的 BP 文件链接永远不出现在返回里。不许去猜路径、拼 URL 或让用户「试试这个地址」。要 BP 就让用户去跟对方开聊要。 · 规模很小(百级),召回后内存过滤;分页同样是 offset。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sideYesinvestor=看投资人一侧 | project=看在融资的项目一侧
typeNo仅 side=investor 有效,投资人类型:individual(个人投资人) | corporate(产业投资) | institution(投资机构)
limitNo返回条数,默认 20,最多 50
roundNo轮次关键词(自由文本宽松匹配,非精确)
offsetNo偏移量,默认 0;用上一次返回的 nextCursor

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Even though annotations already mark this read-only, idempotent, and non-destructive, the description adds essential behavioral disclosures: round is a loose free-text containment match, type may be inferred from personaTags/canOffer rather than self-reported, project mode includes records where fundraising is null but financingNeed has a value, BP files are never returned, and the dataset is small enough to filter in memory. These are exactly the kind of non-obvious behavioral caveats an agent needs.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is long but tightly structured with clear sections (何时用, 组合链, 口径/坑) and bullet-like caveats. Each sentence adds decision-relevant information or prevents a costly mistake, such as the BP URL prohibition and the round matching caveat. The examples are concrete and the layout makes the content easy to scan.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema, the description provides the key fields for downstream chaining (items[].user.id, items[].company.slug, items[].product.slug, hasBp), covers both side-specific data quirks, explains what cannot be returned (BP files), and clarifies pagination behavior. For a complex dual-mode list tool with data-quality caveats, this is comprehensive.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3, but the description adds meaningful parameter semantics: side is tied to concrete user intents, round gets matching rule and example values, type is flagged as inferred/not authoritative, and offset is described with the nextCursor convention. Only limit gets no extra explanation, but its schema description is already sufficient.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description explicitly states a dual-lens search: side=investor finds investors (个人/产投/机构) and side=project finds projects currently fundraising. It provides concrete user-phrase examples ('帮我找看 AI 应用的天使' vs '最近有哪些一人公司在融钱') that make the tool's purpose and scope unmistakable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The '何时用' section gives clear selection criteria with concrete examples, and the combination chain tells the agent exactly how to follow up (get_creator, start_conversation, follow_creator, get_company, get_product, set_my_role_profile). It does not explicitly contrast list_funding with sibling listing/search tools like list_creators or search_people, but the examples and routing guidance make when-to-use clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation4/5

Each tool has a clearly documented purpose, often with explicit 'when to use' guidance and cross-references, making the vast majority easy to tell apart. A few clusters (get_my_brief, get_my_positioning, get_my_work, get_my_dispatch) and data-overlapping get_my_card vs get_my_profile require careful reading, but descriptions are detailed enough to prevent serious misselection.

Naming Consistency4/5

The overwhelming majority follow snake_case verb_noun conventions (create_product, update_need, list_my_signups). Minor deviations include noun-only feed names (personalized_feed, random_feed), inconsistency between 'prefs' and 'preferences' in notification tools, and a mix of update_* and set_* for mutations, but the pattern remains predictable overall.

Tool Count1/5

137 tools is an extreme mismatch for any MCP server, far exceeding the 50+ threshold for a score of 1. Even with a broad multi-domain platform, this volume makes tool selection and navigation impractical and heavily burdens the agent's context window.

Completeness5/5

The surface covers full lifecycles for needs, products, activities/signups, conversations, collaboration goals/tasks, dispatch, profile/onboarding, and supporting resources like companies, parks, policies, and ratings. Deliberate omissions (no user-post creation, no organizer profile editing via agent) are explicitly documented, so core workflows have no obvious dead ends.

Resources