- Home
- MCP servers
- Usense Data
Usense Data
- javascript
5
GitHub Stars
javascript
Language
4 months ago
First Indexed
3 weeks ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"usensedata-usensedata-mcp-server-query-china-company": {
"command": "npx",
"args": [
"-y",
"usensedata-mcp-server-query-china-company"
],
"env": {
"USENSEDATA_API_KEY": "your_api_key",
"USENSEDATA_API_USERID": "your_api_userid"
}
}
}
}You can access Usense data enterprise services through an MCP Server that translates natural queries into structured data actions. This server lets you quickly look up company basic information, overseas investments, changes, software copyrights, trademarks, court litigation, abnormal operations, and verify names, all by using MCP-compatible agents.
How to use
Connect your MCP-enabled agent to the Usense data MCP Server to start querying Chinese enterprise data. You can leverage each tool to retrieve targeted information about a company by name or keyword, combine results from multiple tools, and present a consolidated view to your users. For example you can ask for a company’s overseas investments, thenfollow up with basic information or litigation history, all within a single conversational flow.
How to install
Prerequisites: ensure you have Node.js and npm installed on your machine.
Verify installation: run node -v and npm -v to confirm versions are accessible.
Install dependencies for the project: run npm install.
Build the TypeScript project: run npm run build.
Configure and run the MCP server configuration blocks shown below to connect to the MCP client. You will need to obtain API credentials (API key and user ID) from UsenseData.
Version and publishing steps (optional): If you need to publish a new version, log in to npm and publish the package with a public access setting after updating the version in package.json.
Configuration and usage notes
{
"mcpServers": [
{
"name": "usense_corp_linux",
"type": "stdio",
"command": "npx",
"args": [
"-y",
"usensedata-mcp-server-query-china-company"
],
"env": {
"USENSEDATA_API_KEY": "your_api_key",
"USENSEDATA_API_USERID": "your_api_userid"
}
},
{
"name": "usense_corp_windows",
"type": "stdio",
"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"
}
}
]
}
Security and environment setup
Ensure your API credentials are kept secure. Do not share your API key or user ID in logs or public repositories. The configuration blocks require you to supply USENSEDATA_API_KEY and USENSEDATA_API_USERID values obtained from UsenseData.
Examples and expected results
Example query sequence one: ask for the overseas investments of 羽山数据, then retrieve basic company information and any related trademarks. The system will combine results from fuzzy_query_company, query_company_overseas_investments, query_company_basic_info, and query_company_trademark_list to present a comprehensive profile.
Available tools
verify_company_name_and_president
Validate that the legal representative's name matches the company name. Returns 0 if they match, 1 if they do not.
fuzzy_query_company
Fuzzy search company information by a keyword from the company name.
query_company_basic_info
Query basic company information by full company name, including legal representative, registered capital, and unified social credit code.
query_company_overseas_investments
Retrieve the company’s foreign investment information, including investment amount, shareholding, and investor type.
query_company_change_records
Fetch company change records by full company name.
query_company_software_copyright_info
Query software copyright registration information by full company name.
query_company_trademark_list
Get the company’s trademark list, including trademark name, company name, and status.
query_company_court_litigation_related_info
Query court litigation information related to the company.
query_company_abnormal_business_operation
Query abnormal business operation information by full company name.