fuzzy_query_companyFuzzy 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.Input schema{
"type": "object",
"properties": {
"keyWord": {
"type": "string",
"description": "company name keywords"
}
},
"required": [
"keyWord"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | | — |
query_company_abnormal_business_operationQuery 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.Input schema{
"type": "object",
"properties": {
"keyWord": {
"type": "string",
"description": "company full name"
}
},
"required": [
"keyWord"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | | — |
query_company_basic_infoQuery 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.Input schema{
"type": "object",
"properties": {
"entname": {
"type": "string",
"description": "company full name"
}
},
"required": [
"entname"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | | — |
query_company_change_recordsQuery 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.Input schema{
"type": "object",
"properties": {
"entName": {
"type": "string",
"description": "company full name"
}
},
"required": [
"entName"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | | — |
query_company_court_litigation_related_infoObtain 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.Input schema{
"type": "object",
"properties": {
"entName": {
"type": "string",
"description": "company full name"
}
},
"required": [
"entName"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | | — |
query_company_overseas_investmentsQuery 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.Input schema{
"type": "object",
"properties": {
"entName": {
"type": "string",
"description": "company full name"
}
},
"required": [
"entName"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | | — |
query_company_software_copyright_infoQuery 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.Input schema{
"type": "object",
"properties": {
"entName": {
"type": "string",
"description": "company full name"
}
},
"required": [
"entName"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | | — |
query_company_trademark_listObtain 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.Input schema{
"type": "object",
"properties": {
"entName": {
"type": "string",
"description": "company full name"
}
},
"required": [
"entName"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | | — |
verify_company_name_and_presidentVerification 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.Input schema{
"type": "object",
"properties": {
"operName": {
"type": "string",
"description": "representative's name"
},
"entName": {
"type": "string",
"description": "company full name"
}
},
"required": [
"operName",
"entName"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | | — |