add_revenue
Record closed deals and revenue data in Google Sheets for tracking business performance and managing sales pipeline through the Revenue Engine MCP server.
Instructions
Add a closed deal
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clientName | Yes | ||
contractValue | Yes | ||
leadId | No | ||
notes | No | ||
paymentReceived | No | ||
projectDescription | No | ||
serviceType | No | ||
status | No |
Input Schema (JSON Schema)
{
"properties": {
"clientName": {
"type": "string"
},
"contractValue": {
"type": "number"
},
"leadId": {
"type": "number"
},
"notes": {
"type": "string"
},
"paymentReceived": {
"type": "number"
},
"projectDescription": {
"type": "string"
},
"serviceType": {
"enum": [
"Website",
"Automation",
"SaaS Consulting",
"Combined",
"Other"
],
"type": "string"
},
"status": {
"enum": [
"Proposed",
"Accepted",
"In Progress",
"Delivered",
"Paid"
],
"type": "string"
}
},
"required": [
"clientName",
"contractValue"
],
"type": "object"
}