Tool tree
Open-source AI agent monitoring platform. Full observability into what's failing in production. Discover underlying issues, get alerts when something breaks and verify your fix worked.
navigate_toact
Navigate the browser to a key Latitude page such as pricing, blog, changelog, documentation, signup, or book-demo.
View tool JSON
{
"name": "navigate_to",
"kind": "act",
"impl": "imperative",
"description": "Navigate the browser to a key Latitude page such as pricing, blog, changelog, documentation, signup, or book-demo.",
"inputSchema": {
"type": "object",
"properties": {
"page": {
"type": "string",
"enum": [
"home",
"pricing",
"blog",
"changelog",
"about",
"privacy",
"terms",
"book-demo",
"signup",
"docs",
"github"
],
"description": "Destination page key."
}
},
"required": [
"page"
]
},
"page": "/"
}get_site_pagesanswer
Return key Latitude marketing site pages with URLs and descriptions. Use this to discover where to navigate.
View tool JSON
{
"name": "get_site_pages",
"kind": "answer",
"impl": "imperative",
"description": "Return key Latitude marketing site pages with URLs and descriptions. Use this to discover where to navigate.",
"inputSchema": {
"type": "object",
"properties": {}
},
"page": "/"
}get_page_contextanswer
Return metadata about the page the user is currently viewing, including URL, title, and meta description.
View tool JSON
{
"name": "get_page_context",
"kind": "answer",
"impl": "imperative",
"description": "Return metadata about the page the user is currently viewing, including URL, title, and meta description.",
"inputSchema": {
"type": "object",
"properties": {}
},
"page": "/"
}search_bloganswer
Search Latitude blog articles by keyword in the title or description. Returns matching posts with URLs.
View tool JSON
{
"name": "search_blog",
"kind": "answer",
"impl": "imperative",
"description": "Search Latitude blog articles by keyword in the title or description. Returns matching posts with URLs.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search terms to match against blog post titles and descriptions."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 20,
"description": "Maximum number of results to return (default 10)."
}
},
"required": [
"query"
]
},
"page": "/"
}list_changeloganswer
List recent Latitude product changelog entries with titles, descriptions, dates, and URLs.
View tool JSON
{
"name": "list_changelog",
"kind": "answer",
"impl": "imperative",
"description": "List recent Latitude product changelog entries with titles, descriptions, dates, and URLs.",
"inputSchema": {
"type": "object",
"properties": {
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 20,
"description": "Maximum number of entries to return (default 10)."
}
}
},
"page": "/"
}