create_client
Generate a new client record in the Norman Finance MCP Server by providing essential details such as name, type, address, and contact information, streamlining client management for accounting and tax services.
Instructions
Create a new client.
Args:
name: Client name or business name
client_type: Type of client (defaults to "business"), Options: "business", "private"
address: Client physical address
zip_code: Client postal/zip code
email: Client email address
country: Client country code (e.g. "DE")
vat_number: Client VAT number
city: Client city
phone: Client phone number
Returns:
Newly created client record
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | No | ||
city | No | ||
client_type | No | business | |
country | No | ||
No | |||
name | Yes | ||
phone | No | ||
vat_number | No | ||
zip_code | No |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Address"
},
"city": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "City"
},
"client_type": {
"default": "business",
"title": "Client Type",
"type": "string"
},
"country": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Country"
},
"email": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Email"
},
"name": {
"title": "Name",
"type": "string"
},
"phone": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Phone"
},
"vat_number": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Vat Number"
},
"zip_code": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Zip Code"
}
},
"required": [
"name"
],
"title": "create_clientArguments",
"type": "object"
}