login
Authenticate with your Money Lover account to access personal finance data and manage transactions through the MCP server.
Instructions
Authenticate using Money Lover credentials to retrieve a JWT token.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | Money Lover account email | ||
| password | Yes | Money Lover account password |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"description": "Money Lover account email",
"format": "email",
"type": "string"
},
"password": {
"description": "Money Lover account password",
"minLength": 1,
"type": "string"
}
},
"required": [
"email",
"password"
],
"type": "object"
}