Tool tree
page: Every page
navigate_toAction
Navigate the Customware site to a specific in-app path (e.g. '/pricing', '/aienterprise', '/blog/some-slug', or any SCN page slug like '/salesforce-cpq-end-of-sale'). Use list_pages or search_content first to discover valid paths.
View tool JSON
{
"name": "navigate_to",
"kind": "act",
"impl": "imperative",
"description": "Navigate the Customware site to a specific in-app path (e.g. '/pricing', '/aienterprise', '/blog/some-slug', or any SCN page slug like '/salesforce-cpq-end-of-sale'). Use list_pages or search_content first to discover valid paths.",
"inputSchema": {
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "In-app path beginning with '/'."
}
},
"required": [
"path"
]
},
"page": "/"
}list_pagesAnswer
List the main top-level pages on customware.ai (home, pricing, AI Enterprise, demo, surveys, blog, resources, schedule).
View tool JSON
{
"name": "list_pages",
"kind": "answer",
"impl": "imperative",
"description": "List the main top-level pages on customware.ai (home, pricing, AI Enterprise, demo, surveys, blog, resources, schedule).",
"inputSchema": {
"type": "object",
"properties": {}
},
"page": "/"
}list_scn_pagesAnswer
List all SCN / SEO landing pages (the deep cluster at root URLs like /salesforce-cpq-end-of-sale, /ai-cpq-software, etc.). Returns slug, path, title, description, category and tags for each. Useful for an agent that wants to recommend a specific deep page to a user.
View tool JSON
{
"name": "list_scn_pages",
"kind": "answer",
"impl": "imperative",
"description": "List all SCN / SEO landing pages (the deep cluster at root URLs like /salesforce-cpq-end-of-sale, /ai-cpq-software, etc.). Returns slug, path, title, description, category and tags for each. Useful for an agent that wants to recommend a specific deep page to a user.",
"inputSchema": {
"type": "object",
"properties": {
"category": {
"type": "string",
"description": "Optional category filter (e.g. 'salesforce-cpq')."
},
"limit": {
"type": "number",
"description": "Max number of results (default 100)."
}
}
},
"page": "/"
}get_scn_pageAnswer
Fetch the full content of a specific SCN / territory page by slug. Returns title, description, category, tags, and a plain-text summary of the body. Use list_scn_pages or search_content to find slugs.
View tool JSON
{
"name": "get_scn_page",
"kind": "answer",
"impl": "imperative",
"description": "Fetch the full content of a specific SCN / territory page by slug. Returns title, description, category, tags, and a plain-text summary of the body. Use list_scn_pages or search_content to find slugs.",
"inputSchema": {
"type": "object",
"properties": {
"slug": {
"type": "string",
"description": "Page slug, e.g. 'salesforce-cpq-end-of-sale'."
},
"full": {
"type": "boolean",
"description": "If true, returns the full body text instead of a summary."
}
},
"required": [
"slug"
]
},
"page": "/"
}list_blog_postsAnswer
List Customware blog posts (slug, path, title, description, publishedAt).
View tool JSON
{
"name": "list_blog_posts",
"kind": "answer",
"impl": "imperative",
"description": "List Customware blog posts (slug, path, title, description, publishedAt).",
"inputSchema": {
"type": "object",
"properties": {
"limit": {
"type": "number"
}
}
},
"page": "/"
}get_blog_postAnswer
Fetch a specific blog post by slug. Returns metadata and a text summary.
View tool JSON
{
"name": "get_blog_post",
"kind": "answer",
"impl": "imperative",
"description": "Fetch a specific blog post by slug. Returns metadata and a text summary.",
"inputSchema": {
"type": "object",
"properties": {
"slug": {
"type": "string"
},
"full": {
"type": "boolean"
}
},
"required": [
"slug"
]
},
"page": "/"
}list_resourcesAnswer
List long-form resource articles (slug, path, title, description, category).
View tool JSON
{
"name": "list_resources",
"kind": "answer",
"impl": "imperative",
"description": "List long-form resource articles (slug, path, title, description, category).",
"inputSchema": {
"type": "object",
"properties": {}
},
"page": "/"
}search_contentAnswer
Full-text search across every Customware page (SCN landing pages, blog posts, resource articles). Returns the top matches with kind, path, title, description, and a snippet.
View tool JSON
{
"name": "search_content",
"kind": "answer",
"impl": "imperative",
"description": "Full-text search across every Customware page (SCN landing pages, blog posts, resource articles). Returns the top matches with kind, path, title, description, and a snippet.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search query."
},
"limit": {
"type": "number",
"description": "Max results (default 10)."
},
"kind": {
"type": "string",
"enum": [
"scn",
"blog",
"resource",
"any"
],
"description": "Restrict results to a content kind."
}
},
"required": [
"query"
]
},
"page": "/"
}open_pricingAnswer
Open the pricing page. Optionally jump to a specific tier section: 'start' (Use Case Starter), 'cpq' (CPQ Build Foundation), or 'enterprise' (AI Enterprise Adoption).
View tool JSON
{
"name": "open_pricing",
"kind": "answer",
"impl": "imperative",
"description": "Open the pricing page. Optionally jump to a specific tier section: 'start' (Use Case Starter), 'cpq' (CPQ Build Foundation), or 'enterprise' (AI Enterprise Adoption).",
"inputSchema": {
"type": "object",
"properties": {
"section": {
"type": "string",
"enum": [
"start",
"cpq",
"enterprise"
]
}
}
},
"page": "/"
}start_cpq_surveyAction
Start the 2-minute, 7-question CPQ readiness survey. Best for users who want to see if Customware is a fit for their CPQ / quoting workflow.
View tool JSON
{
"name": "start_cpq_survey",
"kind": "act",
"impl": "imperative",
"description": "Start the 2-minute, 7-question CPQ readiness survey. Best for users who want to see if Customware is a fit for their CPQ / quoting workflow.",
"inputSchema": {
"type": "object",
"properties": {}
},
"page": "/"
}book_demoSensitive Action
Schedule a 30-minute call with David Uram (founder). Returns the Google Calendar booking URL. Use this when a user wants to talk to a human.
View tool JSON
{
"name": "book_demo",
"kind": "transact",
"impl": "imperative",
"description": "Schedule a 30-minute call with David Uram (founder). Returns the Google Calendar booking URL. Use this when a user wants to talk to a human.",
"inputSchema": {
"type": "object",
"properties": {}
},
"page": "/"
}request_demoAction
Open the AI Enterprise Adoption Platform page where a user can request a demo via the lead form.
View tool JSON
{
"name": "request_demo",
"kind": "act",
"impl": "imperative",
"description": "Open the AI Enterprise Adoption Platform page where a user can request a demo via the lead form.",
"inputSchema": {
"type": "object",
"properties": {}
},
"page": "/"
}get_pricing_summaryAnswer
Return the canonical Customware pricing in structured form (three tiers, no Year-2 renewal).
View tool JSON
{
"name": "get_pricing_summary",
"kind": "answer",
"impl": "imperative",
"description": "Return the canonical Customware pricing in structured form (three tiers, no Year-2 renewal).",
"inputSchema": {
"type": "object",
"properties": {}
},
"page": "/"
}