usensedata-mcp-server-query-china-company

by usensedata

353 downloads
Not rated
GitHub

About

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

Details

Author
usensedata
Downloads
353
Categories
Developer Tools

- Enterprise two‑element verification (name & legal representative)
- Fuzzy company name search
- Basic company information query
- Check outward investment details
- Retrieve company change records
- Query software copyright registrations
- List trademarks owned by a company
- Search court litigation information
- Check business operation abnormalities

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name usensedata-mcp-server-query-china-company
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install Node.js and npm, then run npm install and npm run build in the project directory. Configure your MCP client with the command npx -y usensedata-mcp-server-query-china-company (use cmd /c on Windows) and set the environment variables USENSEDATA_API_KEY and USENSEDATA_API_USERID with credentials from Yushan Data.

verify_company_name_and_president

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_company tool to obtain the company full name before calling this tool.

fuzzy_query_company

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. If the specific company the user refers to is unclear, please ask the user to clarify.

query_company_basic_info

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_company tool to obtain the company full name before calling this tool.

query_company_overseas_investments

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

query_company_change_records

Query the change records of an company by its full name. Please use the fuzzy_query_company tool to obtain the company full name before calling this tool.

query_company_software_copyright_info

Query the registration information of an company's software copyrights by its full name. Please use the fuzzy_query_company tool to obtain the company full name before calling this tool.

query_company_trademark_list

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

query_company_court_litigation_related_info

Obtain the litigation - related information of a target company in court by its full name. Please use the fuzzy_query_company tool to obtain the company full name before calling this tool.

query_company_abnormal_business_operation

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

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "usensedata-mcp-server-query-china-company": {
            "usensedata-mcp-server": {
                "command": "npx",
                "args": [
                    "-y",
                    "usensedata-mcp-server-query-china-company"
                ],
                "env": {
                    "USENSEDATA_API_KEY": "<YOUR_API_KEY>",
                    "USENSEDATA_API_USERID": "<YOUR_API_USERID>"
                }
            }
        }
    }
}

McpServers

{
    "usensedata-mcp-server": {
        "command": "npx",
        "args": [
            "-y",
            "usensedata-mcp-server-query-china-company"
        ],
        "env": {
            "USENSEDATA_API_KEY": "<YOUR_API_KEY>",
            "USENSEDATA_API_USERID": "<YOUR_API_USERID>"
        }
    }
}

简介

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

工具列表

- 企业二要素核验 - 对法定代表人姓名和企业名称这两个要素进行核验。返回0表示二者一致,返回1表示二者不一致。。 - 企业模糊查询 - 通过企业名称关键词,查询并返回企业模糊信息。 - 企业基本信息查询 - 通过企业名称、统一信用代码,查询并返回企业名称、法人、注册资本等基础资料,了解企业概况。 - 公司对外投资查询 - 通过企业名称,可获取企业投资金额,占股比、股东类型等信息。 - 企业变更记录查询 - 通过企业名称,查询企业变更记录内容。 - 企业软件著作权信息 - 通过企业名称,返回企业软件著作权登记注册信息。 - 企业商标列表查询 - 通过企业名称,获取企业商标列表信息,包括商标名称,企业名称、状态。 - 企业法院涉诉信息 - 通过企业名称,获取目标企业法院涉诉信息。 - 企业经营异常 - 通过企业名称,查询对相应企业经营异常信息。

环境

获取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"
    }
  }
}
No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.