← itjuzi.com

INDIVIDUAL MCP TOOL

get_lookup_options

查询小型字典选项,用于把自然语言条件映射为ID,例如行业、子行业、融资轮次、省份、发展阶段、机构类型、公司资质和死亡原因。不传 lookup_type 时只返回字典类型和数量摘要。标签数量较大,不要用本工具获取标签全集;赛道或标签词映射请调用 search_tags。

itjuzi.comnone authenticationAvailability not checked

LIVE ENDPOINT

https://mcp.itjuzi.com/mcp

No auth detected

Connect to this endpoint to inspect the live schema for get_lookup_options and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent server

itjuzi.com

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.it-mcp]
url = "https://mcp.itjuzi.com/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "it-mcp": {
      "type": "http",
      "url": "https://mcp.itjuzi.com/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: it-mcp
Remote MCP URL: https://mcp.itjuzi.com/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "it-mcp": {
      "url": "https://mcp.itjuzi.com/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "it-mcp": {
      "type": "http",
      "url": "https://mcp.itjuzi.com/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "it-mcp",
  "transport": "streamable-http",
  "url": "https://mcp.itjuzi.com/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • search_companies — 按公司关键词、行业、标签、中国/海外地区、成立年份、发展阶段、千里马、独角兽、公司资质等条件分页查询对外可见公司,适合回答有哪些公司、按名称找公司和补充项目背景;工商名称、工商注册名称、工商全称对应字段 registered_name。如用户只问总数、多少家、数量,优先使用 count_companies。
  • count_companies — 按公司关键词、行业、标签、中国/海外地区、成立年份、发展阶段、千里马、独角兽、公司资质等条件统计对外可见公司总数。适合回答多少家公司、总计几家、数量是多少;不要为了计数遍历 search_companies 分页。
  • search_closed_companies — 分页查询死亡/关闭公司库。按公司关键词、行业、标签、中国/海外地区、成立年份、发展阶段、千里马、独角兽、公司资质、关闭日期、关闭原因或一级关闭原因筛选,返回公司画像、最新融资摘要、关闭日期和死亡原因。适合回答最近倒闭了哪些公司、某赛道死亡公司清单、某关闭原因下有哪些公司。如用户只问总数、多少家、数量,优先使用 count_closed_companies。
  • count_closed_companies — 按行业、标签、地区、成立年份、发展阶段、公司资质、关闭日期、关闭原因或一级关闭原因统计死亡/关闭公司数量。适合回答某赛道倒闭公司有多少家、某年度关闭公司数量、某原因下关闭公司总数;不要为了计数遍历 search_closed_companies 分页。
  • analyze_closed_company_cohort — 按死亡/关闭公司筛选条件聚合分析完整融资历史,返回样本数量、融资事件数、披露融资总额、关闭前最后融资至关闭间隔、最后融资轮次分布、关闭原因分布和代表案例。适合赛道失败复盘、融资失效分析和项目反证尽调;输出历史样本参照,不预测存续公司是否关闭。
  • resolve_companies — 批量把用户给出的公司简称或工商全称解析为 IT桔子 company_id,返回每个输入名称的候选匹配;工商名称、工商注册名称、工商全称对应字段 registered_name。适合处理用户给定的一批公司名单,例如先解析19家独角兽公司,再调用 get_company_funding_events 查询融资历史。
  • get_company_profile — 按公司ID查询公司画像,包括公司简称、工商全称 registered_name、行业、标签、地区、简介、最新融资和历史投资方等字段;工商名称、工商注册名称均对应 registered_name。
  • get_company_funding_events — 按公司ID分页查询公司融资历史,返回轮次、金额、币种、投资方、FA和估值等信息。