Tool tree
Tesla vehicle API access and automation integrations
get_pricingAnswer
Retrieve Teslemetry's current subscription and pay-per-use pricing, localized to the visitor's region. A price of null means the plan is free.
View tool JSON
{
"name": "get_pricing",
"kind": "answer",
"impl": "imperative",
"description": "Retrieve Teslemetry's current subscription and pay-per-use pricing, localized to the visitor's region. A price of null means the plan is free.",
"inputSchema": {
"type": "object",
"properties": {}
}
}navigate_to_pageAction
Navigate the visitor's browser to a Teslemetry page: the homepage, pricing, the docs or blog index, or any documentation/blog article path returned by search_docs.
View tool JSON
{
"name": "navigate_to_page",
"kind": "act",
"impl": "imperative",
"description": "Navigate the visitor's browser to a Teslemetry page: the homepage, pricing, the docs or blog index, or any documentation/blog article path returned by search_docs.",
"inputSchema": {
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "A site path such as \"/\", \"/pricing\", \"/docs\", \"/blog\", or a path returned by search_docs."
}
},
"required": [
"path"
]
}
}search_docsAnswer
Search Teslemetry's documentation and blog for setup guides, integration instructions, and troubleshooting help. Returns matching page titles, paths, and excerpts.
View tool JSON
{
"name": "search_docs",
"kind": "answer",
"impl": "imperative",
"description": "Search Teslemetry's documentation and blog for setup guides, integration instructions, and troubleshooting help. Returns matching page titles, paths, and excerpts.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search terms, e.g. \"home assistant setup\" or \"webhook signing\""
}
},
"required": [
"query"
]
}
}