update_company_details
Modify company details such as name, address, tax ID, and more on the Norman Finance MCP Server to ensure accurate and up-to-date business information for accounting and tax filing.
Instructions
Update company information.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
activity_start | No | ||
address | No | ||
city | No | ||
country | No | ||
name | No | ||
phone | No | ||
profession | No | ||
tax_id | No | ||
tax_state | No | ||
vat_id | No | ||
zip_code | No |
Input Schema (JSON Schema)
{
"properties": {
"activity_start": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Activity Start"
},
"address": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Address"
},
"city": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "City"
},
"country": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Country"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
},
"phone": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Phone"
},
"profession": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Profession"
},
"tax_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Tax Id"
},
"tax_state": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Tax State"
},
"vat_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Vat Id"
},
"zip_code": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Zip Code"
}
},
"title": "update_company_detailsArguments",
"type": "object"
}