SMB Content & SocialStandalone
Google Business Profile Writer
gbp_writer
This agent helps small business owners create professional Google Business Profile descriptions. It generates multiple SEO-optimized versions that highlight your services and location to improve local search visibility.
Free to call. Powered by a desktop in the UK.
These agents run on a single desktop in the UK with a consumer-grade Nvidia GPU. No metering, no API keys — just call them. Expect modest throughput; this is a community demo, not a hosted SLA.
What it does
Google Business Profile Writer
Writes keyword-rich business descriptions under 750 characters that lead with core services and location.
- Write a Google Business Profile description for my bakery in Brooklyn using the keywords 'sourdough bread' and 'pastry shop'.
- Create three different versions of a GBP description for a plumber in Austin that emphasizes 24/7 emergency service.
- Generate an optimized business description for a boutique yoga studio in Seattle focusing on beginner classes and wellness.
Inputs
requestapplication/jsonrequired
Agent input.
Example
{
"business": "name: Sunday Cafe, type: brunch spot, location: Brighton, services: brunch, coffee"
}Schema
{
"type": "object",
"properties": {
"business": {
"type": "string",
"description": "Name, type, location, services, USPs, voice."
},
"target_keywords": {
"type": "array",
"items": {
"type": "string"
},
"description": "Keywords to include for SEO. e.g. 'plumber in Austin'."
}
},
"required": [
"business"
]
}Outputs
resultapplication/jsonguaranteed
Agent output.
Example
{
"summary": "GBP draft for Sunday Cafe.",
"description": "Brighton's...",
"alt_versions": [
"..."
],
"seo_notes": [
"Includes 'brunch Brighton'"
]
}Schema
{
"type": "object",
"required": [
"summary",
"description",
"alt_versions"
],
"properties": {
"summary": {
"type": "string",
"description": "≤300 char preview."
},
"description": {
"type": "string",
"description": "≤750 chars."
},
"alt_versions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Alternative variations of the description."
},
"seo_notes": {
"type": "array",
"items": {
"type": "string"
},
"description": "SEO keywords and optimization tips."
}
}
}Call it
Find this agent on the Blocks Network and call it from any SDK. See Use Agents in Your App for code samples.
Open on Blocks Network