Skip to main content
Glama
usensedata

usensedata-mcp-server-query-china-company

Official
by usensedata

简介

羽山数据API服务现已全面兼容MCP协议,打造数据服务MCP Server。usensedata-mcp-server-query-china-company项目为企业类数据查询服务server,用户可通过简单配置快速通过LLM使用羽山数据企业类数据服务。依赖MCP Typescript SDK,可在支持MCP协议的智能体助手中快速接入。

Related MCP server: FinData

工具列表

1. verify_company_name_and_president

简介:验证法人姓名与企业名称是否一致。返回 0 表示一致,返回 1 表示不一致。
入参

  • operName:代表人姓名

  • entName:公司全名


2. fuzzy_query_company

简介:通过企业名称关键词模糊查询公司信息。
入参

  • keyWord:公司名称关键词


3. query_company_basic_info

简介:根据公司全名查询企业基本信息(如法人、注册资本、统一社会信用代码等)。
入参

  • entname:公司全名


4. query_company_overseas_investments

简介:查询企业的对外投资信息,如投资金额、持股比例、股东类型等。
入参

  • entName:公司全名


5. query_company_change_records

简介:根据公司全名查询企业变更记录内容。
入参

  • entName:公司全名


6. query_company_software_copyright_info

简介:根据公司全名查询其软件著作权登记信息。
入参

  • entName:公司全名


7. query_company_trademark_list

简介:查询企业商标列表信息,包括商标名称、企业名称和状态。
入参

  • entName:公司全名


8. query_company_court_litigation_related_info

简介:查询公司法院相关的诉讼信息。
入参

  • name:公司全名


9. query_company_abnormal_business_operation

简介:根据公司全名查询企业的经营异常信息。
入参

  • keyWord:公司全名

环境

获取Usense UserID和Key

请联系羽山数据获取用户账号与密钥

安装node.js

当在终端中能成功获取版本号即安装成功,mac须用brew安装

node -v
npm -v

安装依赖

npm install

typescript打包

npm run build

更新版本

先登录npm账号,须在package.json中更新版本号

npm login
npm publish --access public

配置mcp server config

macos/linux

"mcpServers": {
  "usense-corp": {
    "command": "npx",
    "args": [
      "-y",
      "usensedata-mcp-server-query-china-company"
    ],
    "env": {
      "USENSEDATA_API_KEY": "your_api_key",
      "USENSEDATA_API_USERID": "your_api_userid"
    }
  }
}

windows

"mcpServers": {
  "usense-corp": {
    "command": "cmd",
    "args": [
      "/c",
      "npx",
      "-y",
      "usensedata-mcp-server-query-china-company"
    ],
    "env": {
      "USENSEDATA_API_KEY": "your_api_key",
      "USENSEDATA_API_USERID": "your_api_userid"
    }
  }
}

效果

实际用户请求:“帮我查一下羽山数据的对外投资情况”

image

说明

1.获取实际请求中的需要查询的企业名称 “羽山数据”

2.调用企业模糊查询 [fuzzy_query_of_enterprises] 获取到跟 “羽山数据” 相关的企业列表信息,并从中取得到公司全名.

3.然后调用公司对外投资查询 [query_company_overseas_investments] 获取公司对应的投资信息.

4.再调用企业基本信息查询 [query_basic_enterprise_information] 获取公司的基本信息内容.

5.最后整理以上所以信息,进行输出返回最终展示结果信息.

Agent结果

image image

MCP tools加载

image

Available Tools

9 tools
fuzzy_query_companyA

Fuzzy search through company name keywords to return a list of enterprise information. Use this tool to retrieve the company's full name before calling other tools that require it.

ParametersJSON Schema
NameRequiredDescriptionDefault
keyWordYescompany name keywords

TDQS

A4.2/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden. It discloses the fuzzy search behavior and that it returns a list, but lacks details on pagination, result limits, error conditions, or authentication requirements. It adds some context but is incomplete for behavioral transparency.

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 front-loaded with the core purpose and includes a clear usage guideline in two concise sentences, with no wasted words or redundant information.

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

Completeness4/5

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

Given the simple single-parameter input, no output schema, and no annotations, the description adequately covers purpose and usage. However, it could improve by hinting at the output structure or error handling, though the low complexity makes this less critical.

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

Parameters3/5

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

Schema description coverage is 100%, so the schema already documents the single parameter. The description adds minimal value by mentioning 'company name keywords' but doesn't provide additional syntax, format, or examples beyond what the schema states.

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 clearly states the tool's purpose with specific verbs ('fuzzy search', 'return a list') and resources ('company name keywords', 'enterprise information'), and it distinguishes from siblings by focusing on name-based search rather than specific data categories like litigation or trademarks.

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

Usage Guidelines5/5

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

It explicitly states when to use this tool ('to retrieve the company's full name before calling other tools that require it'), providing clear guidance on its role as a preparatory step for sibling tools that need exact company names.

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

query_company_abnormal_business_operationA

Query the abnormal business operation information of an company by its full name. Please use the fuzzy query tool to obtain the company full name before calling this tool.

ParametersJSON Schema
NameRequiredDescriptionDefault
keyWordYescompany full name

TDQS

A3.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions the tool queries information but does not describe what 'abnormal business operation' entails, the data source, potential rate limits, error conditions, or the format of returned information. For a query tool with no annotation coverage, this leaves significant gaps in understanding its behavior.

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 concise and front-loaded, consisting of two sentences that directly state the tool's purpose and usage guidelines without unnecessary details. Every sentence adds clear value, making it efficient and well-structured.

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

Completeness3/5

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

Given the tool's complexity (a query with one parameter) and the lack of annotations and output schema, the description is partially complete. It covers purpose and usage well but lacks details on behavioral aspects like what data is returned or error handling. It meets minimum viability but has clear gaps in transparency.

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

Parameters3/5

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

The schema description coverage is 100%, with the parameter 'keyWord' documented as 'company full name.' The description adds minimal value beyond this by reiterating the need for the company's full name but does not provide additional context like formatting requirements or examples. Baseline 3 is appropriate as the schema handles the parameter documentation adequately.

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 clearly states the specific action ('Query') and resource ('abnormal business operation information of a company'), and distinguishes it from siblings by focusing on abnormal business operations rather than basic info, change records, or other company data. It explicitly mentions using the company's full name as input, which aligns with the parameter.

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

Usage Guidelines5/5

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

The description provides explicit guidance on when to use this tool: it instructs to 'use the fuzzy query tool to obtain the company full name before calling this tool,' naming the sibling tool 'fuzzy_query_company' as a prerequisite. This clearly defines the workflow and alternative tool usage.

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

query_company_basic_infoA

Query and return basic information such as company name, legal representative, and registered capital by company full name to understand the company overview. Please use the fuzzy query tool to obtain the company full name before calling this tool.

ParametersJSON Schema
NameRequiredDescriptionDefault
entnameYescompany full name

TDQS

A3.9/5.0
Behavior3/5

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

No annotations are provided, so the description carries full burden. It describes the query/return behavior and mentions the need for a company full name obtained via another tool. However, it doesn't disclose important behavioral traits like whether this is a read-only operation, potential rate limits, authentication requirements, error conditions, or what happens with invalid inputs. The description adds some context but leaves significant gaps.

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 perfectly concise with two sentences that each earn their place. The first sentence states the purpose and scope, while the second provides crucial usage guidance. There's zero wasted text, and the most important information (what it does and when to use it) is front-loaded.

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

Completeness3/5

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

Given 1 parameter with 100% schema coverage but no annotations and no output schema, the description is moderately complete. It covers purpose and usage guidelines well, but lacks behavioral transparency details that would be important for a query tool (like response format, error handling, or limitations). The absence of output schema means the description should ideally describe return values, which it doesn't.

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

Parameters3/5

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

Schema description coverage is 100% (the single parameter 'entname' has description 'company full name'), so the baseline is 3. The description adds marginal value by reinforcing that the parameter should be a 'company full name' and suggesting it should come from the fuzzy query tool, but doesn't provide additional semantic context beyond what the schema already documents.

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

Purpose4/5

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

The description clearly states the tool's purpose: 'Query and return basic information such as company name, legal representative, and registered capital by company full name to understand the company overview.' This specifies the verb (query/return), resource (company basic info), and scope (overview). However, it doesn't explicitly differentiate from siblings like 'verify_company_name_and_president' which might have overlapping functionality.

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

Usage Guidelines5/5

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

The description provides explicit usage guidance: 'Please use the fuzzy query tool to obtain the company full name before calling this tool.' This clearly states a prerequisite and references the sibling tool 'fuzzy_query_company' as an alternative for obtaining the required parameter. It effectively tells when to use this tool (after obtaining full name via fuzzy query).

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

query_company_change_recordsC

Query the change records of an company by its full name.

ParametersJSON Schema
NameRequiredDescriptionDefault
entNameYescompany full name

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states it's a query operation, implying read-only behavior, but doesn't mention potential side effects, authentication needs, rate limits, or what the output looks like (e.g., format, pagination). For a tool with zero annotation coverage, this is insufficient.

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 a single, clear sentence with no wasted words. It's front-loaded with the core action and resource, making it easy to parse quickly. Every part of the sentence contributes directly to understanding the tool's function.

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

Completeness2/5

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

Given the lack of annotations and output schema, the description is incomplete. It doesn't explain what 'change records' entail, the return format, or any behavioral traits like error handling. For a query tool with no structured output documentation, more context is needed to guide the agent effectively.

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

Parameters3/5

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

The description adds minimal value beyond the input schema, which already has 100% coverage. It mentions 'full name' for the 'entName' parameter, but the schema description ('company full name') is equivalent. No additional semantics like name format or examples are provided, so it meets the baseline for high schema coverage.

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

Purpose4/5

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

The description clearly states the action ('Query') and the target resource ('change records of a company'), making the purpose understandable. However, it doesn't explicitly differentiate from sibling tools like 'query_company_basic_info' or 'query_company_court_litigation_related_info' that also query company information but for different data types.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It mentions querying by 'full name' but doesn't specify if this is the only method, when to choose it over 'fuzzy_query_company', or any prerequisites like company existence. This leaves the agent without clear usage context.

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

query_company_overseas_investmentsA

Query external investment information, such as the amount, shareholding ratio, shareholder type, etc., by the company's full name. Please use the fuzzy query tool to obtain the company full name before calling this tool.

ParametersJSON Schema
NameRequiredDescriptionDefault
entNameYescompany full name

TDQS

A3.7/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. While it mentions that the tool queries investment information, it lacks details about behavioral traits such as whether this is a read-only operation, potential rate limits, authentication requirements, error handling, or what the return format looks like. For a query tool with no annotation coverage, this leaves significant gaps in understanding how the tool behaves.

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 highly concise and well-structured, consisting of two sentences that efficiently convey the tool's purpose and usage guidelines. Every sentence earns its place: the first explains what the tool does, and the second provides critical prerequisite information. There is no wasted verbiage or redundancy.

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

Completeness3/5

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

Given the tool's complexity (a single-parameter query with no output schema and no annotations), the description is partially complete. It adequately covers the purpose and usage guidelines but lacks details on behavioral transparency (e.g., read/write nature, response format) and parameter semantics beyond what the schema provides. For a query tool, this leaves the agent with insufficient context about what to expect from the tool's operation.

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

Parameters3/5

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

The schema description coverage is 100%, with the single parameter 'entName' fully documented as 'company full name'. The description adds minimal value beyond this, only reiterating that the tool operates 'by the company's full name' and suggesting the fuzzy query tool to obtain it. No additional semantic context (e.g., format requirements, examples, or constraints) is provided, so the baseline score of 3 is appropriate given the schema does the heavy lifting.

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

Purpose4/5

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

The description clearly states the tool's purpose: 'Query external investment information, such as the amount, shareholding ratio, shareholder type, etc., by the company's full name.' This specifies the verb ('query'), resource ('external investment information'), and scope ('by the company's full name'), making it easy to understand what the tool does. However, it doesn't explicitly distinguish this tool from its siblings beyond mentioning the fuzzy query tool as a prerequisite.

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

Usage Guidelines5/5

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

The description provides explicit usage guidance: 'Please use the fuzzy query tool to obtain the company full name before calling this tool.' This clearly states a prerequisite and references an alternative tool (fuzzy_query_company) for obtaining the required parameter. It effectively tells the agent when to use this tool (after obtaining the exact company name) and what to use instead for the preliminary step.

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

query_company_trademark_listA

Obtain the list of an company's trademarks, including trademark names, company names, and statuses, by its full name. Please use the fuzzy query tool to obtain the company full name before calling this tool.

ParametersJSON Schema
NameRequiredDescriptionDefault
entNameYescompany full name

TDQS

A3.7/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions the tool retrieves trademark data but lacks details on permissions, rate limits, error handling, or response format. For a query tool with no annotations, this leaves significant gaps in understanding its operational behavior.

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 concise and well-structured in two sentences. The first sentence clearly states the purpose, and the second provides essential usage guidance without unnecessary details, making it efficient and front-loaded.

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

Completeness3/5

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

Given no annotations and no output schema, the description adequately covers the tool's purpose and usage prerequisites. However, it lacks details on behavioral aspects like response format or error conditions, which are important for a query tool. It meets minimum viability but has clear gaps in completeness.

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

Parameters3/5

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

Schema description coverage is 100%, with the parameter 'entName' documented as 'company full name'. The description adds context by emphasizing the need for the 'full name' and linking it to the fuzzy query tool, but does not provide additional semantic details beyond what the schema already covers, aligning with the baseline score.

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

Purpose4/5

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

The description clearly states the tool's purpose: 'Obtain the list of an company's trademarks, including trademark names, company names, and statuses, by its full name.' It specifies the verb ('obtain'), resource ('trademarks'), and scope ('list'), but does not explicitly differentiate it from sibling tools like query_company_basic_info or query_company_software_copyright_info, which might also retrieve company-related data.

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

Usage Guidelines5/5

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

The description provides explicit usage guidance: 'Please use the fuzzy query tool to obtain the company full name before calling this tool.' It names the alternative tool (fuzzy_query_company) and specifies when to use it (to get the correct company name), offering clear prerequisites for effective use.

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

verify_company_name_and_presidentA

Verification of the two elements of the legal representative's name and company full name. Return 0 to indicate consistency, and return 1 to indicate inconsistency. Please use the fuzzy query tool to obtain the company full name before calling this tool.

ParametersJSON Schema
NameRequiredDescriptionDefault
operNameYesrepresentative's name
entNameYescompany full name

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations provided, the description carries full burden. It discloses the verification logic and return values (0/1), but doesn't mention error handling, performance characteristics, or what constitutes 'consistency' (exact match vs fuzzy). It adds some behavioral context but leaves gaps.

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?

Two concise sentences with zero waste: first states purpose and return values, second provides prerequisite guidance. Every sentence earns its place by adding essential information.

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

Completeness3/5

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

For a verification tool with 2 parameters, 100% schema coverage, and no output schema, the description is adequate but incomplete. It explains the verification purpose and workflow but doesn't define what 'consistency' means or how the verification is performed, leaving the agent to infer the mechanism.

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

Parameters3/5

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

Schema description coverage is 100%, so the schema already documents both parameters adequately. The description doesn't add meaning beyond what the schema provides about operName and entName, maintaining the baseline score.

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

Purpose4/5

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

The description clearly states the tool's purpose: verifying consistency between a legal representative's name and company full name, with specific return values (0 for consistency, 1 for inconsistency). It distinguishes from siblings by focusing on verification rather than querying, though it doesn't explicitly name alternatives.

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 description provides explicit guidance to use the fuzzy query tool first to obtain the company full name, establishing a clear prerequisite workflow. However, it doesn't specify when NOT to use this tool or name alternative verification methods.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 9 tool updates
    • First observedfuzzy_query_company
    • First observedquery_company_abnormal_business_operation
    • First observedquery_company_basic_info
    • First observedquery_company_change_records
    • First observedquery_company_court_litigation_related_info
    • First observedquery_company_overseas_investments
    • First observedquery_company_software_copyright_info
    • First observedquery_company_trademark_list
    • First observedverify_company_name_and_president

TDQS

A3.8/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose targeting specific types of company information in China, with no overlap in functionality. The descriptions explicitly differentiate between basic info, abnormal operations, change records, litigation, investments, copyrights, trademarks, and verification, making tool selection unambiguous.

Naming Consistency5/5

All tools follow a consistent 'query_company_' prefix pattern with descriptive suffixes (e.g., 'basic_info', 'abnormal_business_operation'), except for 'fuzzy_query_company' and 'verify_company_name_and_president' which still maintain clear naming conventions. The snake_case style is uniform throughout, providing excellent predictability.

Tool Count5/5

With 9 tools, this server is well-scoped for querying Chinese company data, covering a comprehensive range of information types without being excessive. Each tool serves a distinct and necessary function, making the count appropriate for the domain's complexity and user needs.

Completeness4/5

The tool set provides extensive coverage for retrieving various aspects of company information, including basic details, legal status, intellectual property, and investments. A minor gap exists in update or modification capabilities, but this is reasonable for a query-focused server, and agents can work effectively with the provided read-only operations.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    F
    maintenance
    Enables natural language querying of Apache Doris databases via LLM-powered SQL generation, execution, and metadata management through the MCP protocol.
    9
    Apache 2.0
  • A
    license
    Not graded
    quality
    D
    maintenance
    MCP server providing professional financial data access for LLMs through providers like Tushare, Wind, and DataYes.
    1
    Apache 2.0
  • A
    license
    A
    quality
    D
    maintenance
    Provides professional financial data access for LLMs via MCP, supporting providers like Tushare, Wind, and DataYes.
    14
    58
    Apache 2.0
  • F
    license
    B
    quality
    B
    maintenance
    A MCP server that wraps CISP enterprise information APIs into MCP tools, enabling AI agents to query business data like company profiles, trademarks, patents, and more.
    14
    1
    -

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/usensedata/usensedata-mcp-server-query-china-company'

If you have feedback or need assistance with the MCP directory API, please join our Discord server