{"id":17289,"date":"2025-07-09T09:25:04","date_gmt":"2025-07-09T16:25:04","guid":{"rendered":"https:\/\/www.couchbase.com\/blog\/?p=17289"},"modified":"2025-07-09T09:25:04","modified_gmt":"2025-07-09T16:25:04","slug":"ai-agents-build-with-couchbase","status":"publish","type":"post","link":"https:\/\/www.couchbase.com\/blog\/ai-agents-build-with-couchbase\/","title":{"rendered":"Why You Only Need Couchbase When Building Your Agents"},"content":{"rendered":"<p>Agents are intelligent systems powered by large language models (LLMs) that can autonomously perform tasks, make decisions, and interact with users or other systems. Unlike traditional software, agents can understand natural language inputs, determine what actions to take, and use tools or access data to complete tasks on a user\u2019s behalf. This opens up new possibilities for businesses to streamline operations, enhance customer service, automate workflows, and deliver highly personalized experiences at scale.<\/p>\n<p>As the demand for intelligent automation grows, agent-based systems are becoming a key part of modern AI strategies. From answering support tickets and booking appointments to analyzing reports and triggering business processes, agents have the potential to drive significant efficiency gains and unlock new user experiences. For example, a retail company could deploy an agent to automatically generate personalized marketing emails based on recent purchase history. A healthcare provider could use an agent to summarize patient intake forms and suggest preliminary diagnoses. In financial services, agents can review transactions for anomalies or compile compliance reports on demand. To build these systems effectively, developers need to ensure that agents are not only smart but also well-connected to the right data and tools \u2013 starting with the database.<\/p>\n<p>When databases for agentic applications are discussed, vector search often comes to mind first. This is because vector search allows databases to efficiently retrieve information based on semantic similarity rather than exact keyword matches. By representing data as high-dimensional numerical vectors, vector search enables agents to find contextually relevant information quickly and accurately, which is crucial for tasks such as question answering, recommendation systems, and retrieval-augmented generation (RAG). Without robust vector search capabilities, agents might struggle to identify and retrieve the precise information needed to perform tasks effectively.<\/p>\n<p>However, while vector search is a critical capability, it represents only a part of the complete picture needed for robust agentic interactions. To fully realize the potential of agents, we must consider broader database capabilities that support a more holistic interaction with diverse data.<\/p>\n<h2 style=\"font-weight: 400;\">What is an agent and what does data have to do with it?<\/h2>\n<p>At a basic level, LLMs generate text based on patterns learned from their training data. On their own, they don\u2019t know anything about your specific business or real-time information. Vector search helps solve this by giving the LLM access to your own data. It works by turning both your documents and the user\u2019s question into numbers that represent the meaning of the words in a way that makes it easy to compare them. The LLM can then find and use the most relevant pieces of information from your database while it\u2019s generating a response. This approach \u2013 called retrieval-augmented generation (RAG) \u2013 helps the model give more accurate, context-aware answers.<\/p>\n<p>But true agentic behavior extends beyond retrieval. An agent isn&#8217;t just a question-answering engine \u2013 it is an LLM empowered with a set of tools that it can choose to use based on the user prompt. These tools may include web search, APIs, calculators, or database functions. Agents can invoke multiple tools as needed in the course of a single task before returning a response. In doing so, they can autonomously perform actions on the user\u2019s behalf.<\/p>\n<p>In most applications, these tools ultimately create, read, update, or delete data in a source of truth \u2013 usually a database. This means agentic behavior often performs standard CRUD operations in line with the application&#8217;s business logic. The better the integration between the agent and the database, the more capable, consistent, and secure the agent becomes; and the better the database, the easier it is to develop agents.<\/p>\n<h2 style=\"font-weight: 400;\">Does the choice of database matter when building an agent?<\/h2>\n<p>Agents are typically built using agentic frameworks such as LangGraph. These frameworks help developers structure the logic flow between various agents, tools, and the business logic that governs application behavior. On the surface, this development seems entirely decoupled from any particular database technology \u2013 frameworks like LangGraph focus on orchestration, not storage. However, viewing the database as a separate entity is short-sighted.<\/p>\n<p>In practice, the choice of database has a major impact on agent design, tool integration, and execution efficiency. Agents perform actions through tools that ultimately interact with data. As such, the nature of the database or data layer in your application, significantly affects how easily agents can be developed and how effectively they can operate.<\/p>\n<h2 style=\"font-weight: 400;\">What you need from your database to support agents \u2013 and how Couchbase fits<\/h2>\n<p>Designing agentic applications requires more than just a vector search engine. You need a database that supports rich interaction models, performance at scale, and operational simplicity:<\/p>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li aria-level=\"1\"><b>Native JSON support.<\/b> Your database should store data in a format that aligns naturally with LLMs. JSON is the most intuitive structure for this purpose, allowing models to parse and understand it without transformation. Couchbase uses JSON natively, making it easier to integrate with agents.<\/li>\n<li aria-level=\"1\"><b>Flexible access methods.<\/b> Agents benefit from multiple ways to access data:\n<ul>\n<li aria-level=\"2\">Use <b>key-value<\/b> lookups for fast direct access \u2013 for example, when an agent retrieves a user profile by ID to personalize a response without scanning the entire dataset.<\/li>\n<li aria-level=\"2\">Leverage <b>SQL <\/b>for complex queries and joins \u2013 such as when an agent needs to analyze customer purchase history across multiple tables to suggest relevant products or flag anomalies.<\/li>\n<li aria-level=\"2\">Apply <b>vector search<\/b> for semantic similarity \u2013 ideal when an agent answers user questions by retrieving knowledge articles or documents that match intent, not just exact phrasing.<\/li>\n<li aria-level=\"2\">Utilize <b>full-text search<\/b> for unstructured content \u2013 like when an agent needs to find all mentions of a specific issue across customer feedback or support tickets.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li aria-level=\"1\"><b>Low latency and high scalability.<\/b> Agentic applications must respond in real time. Your database should offer low-latency access and scale horizontally with demand. Couchbase\u2019s memory-first architecture and distributed model help ensure consistent performance even under load.<\/li>\n<li aria-level=\"1\"><b>Operational simplicity and consolidation.<\/b> Managing separate databases for different query types complicates your system and slows down development. A unified platform like Couchbase reduces the operational burden by handling all types of queries in one place while also lowering the cost of storing multiple copies of data and maintenance of complicated data pipelines. With Couchbase your data is always available, no matter how you want to access it.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>Couchbase provides all of these within a single platform.<\/p>\n<h2 style=\"font-weight: 400;\">Integrating with the agent development ecosystem<\/h2>\n<p>Frameworks such as LangGraph and Langflow further enhance agentic applications by structuring interactions and workflows around LLMs. Couchbase integrates with key components of the GenAI ecosystem, providing LangChain retrievers and document loaders, semantic caching mechanisms, and LangGraph&#8217;s checkpointer to support persistent and distributed agent state. Additionally, integrations with Langflow enable visual design of LLM pipelines, while Couchbase\u2019s MCP Server provides a standard interface for tool access.<\/p>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Look <a href=\"https:\/\/www.couchbase.com\/developers\/integrations\/?category=Artificial%20Intelligence\" target=\"_blank\" rel=\"noopener\">here for the latest Couchbase integrations<\/a> with the GenAI ecosystem.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>Moreover, Couchbase Capella\u2122 AI Services \u2013 currently in Private Preview \u2013 are poised to simplify agentic development even further. These services offer fully managed and secured integrations between Capella and LLMs, streamlining everything from vector storage to semantic retrieval, and accelerating time to value for agent-based applications.<\/p>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>See our <a href=\"https:\/\/www.couchbase.com\/products\/ai-services\/\" target=\"_blank\" rel=\"noopener\">AI Services page<\/a> for more information.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<h2 style=\"font-weight: 400;\">Conclusion<\/h2>\n<p>While vector search has become widely adopted, the true differentiator in agent-powered applications is the database&#8217;s overall capability to handle diverse interaction methods, scalability, and ease of use. Couchbase excels in all these areas, providing an optimal platform for powering robust, efficient, and versatile agentic experiences with LLMs.<\/p>\n<p><br style=\"font-weight: 400;\" \/><br style=\"font-weight: 400;\" \/><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Agents are intelligent systems powered by large language models (LLMs) that can autonomously perform tasks, make decisions, and interact with users or other systems. Unlike traditional software, agents can understand natural language inputs, determine what actions to take, and use [&hellip;]<\/p>\n","protected":false},"author":83976,"featured_media":17290,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[10123,10092,10122],"tags":[],"ppma_author":[9755],"class_list":["post-17289","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-agentic-ai-apps","category-ai-services","category-artificial-intelligence-ai"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Why You Only Need Couchbase When Building Your Agents - The Couchbase Blog<\/title>\n<meta name=\"description\" content=\"As the demand for intelligent automation grows, agent-based systems are becoming a key part of modern AI strategies.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.couchbase.com\/blog\/ai-agents-build-with-couchbase\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Why You Only Need Couchbase When Building Your Agents\" \/>\n<meta property=\"og:description\" content=\"As the demand for intelligent automation grows, agent-based systems are becoming a key part of modern AI strategies.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.couchbase.com\/blog\/ai-agents-build-with-couchbase\/\" \/>\n<meta property=\"og:site_name\" content=\"The Couchbase Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-07-09T16:25:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2025\/07\/blog-couchbase-building-agents.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2400\" \/>\n\t<meta property=\"og:image:height\" content=\"1256\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Aaron Schneider - Solutions Engineer\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Aaron Schneider - Solutions Engineer\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/ai-agents-build-with-couchbase\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/ai-agents-build-with-couchbase\\\/\"},\"author\":{\"name\":\"Aaron Schneider - Solutions Engineer\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#\\\/schema\\\/person\\\/e7ce322856dc848189fe3fa42e1f036a\"},\"headline\":\"Why You Only Need Couchbase When Building Your Agents\",\"datePublished\":\"2025-07-09T16:25:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/ai-agents-build-with-couchbase\\\/\"},\"wordCount\":1239,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/ai-agents-build-with-couchbase\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/1\\\/2025\\\/07\\\/blog-couchbase-building-agents.png\",\"articleSection\":[\"Agentic AI Applications\",\"AI Services\",\"Artificial Intelligence (AI)\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/ai-agents-build-with-couchbase\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/ai-agents-build-with-couchbase\\\/\",\"url\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/ai-agents-build-with-couchbase\\\/\",\"name\":\"Why You Only Need Couchbase When Building Your Agents - The Couchbase Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/ai-agents-build-with-couchbase\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/ai-agents-build-with-couchbase\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/1\\\/2025\\\/07\\\/blog-couchbase-building-agents.png\",\"datePublished\":\"2025-07-09T16:25:04+00:00\",\"description\":\"As the demand for intelligent automation grows, agent-based systems are becoming a key part of modern AI strategies.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/ai-agents-build-with-couchbase\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/ai-agents-build-with-couchbase\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/ai-agents-build-with-couchbase\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/1\\\/2025\\\/07\\\/blog-couchbase-building-agents.png\",\"contentUrl\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/1\\\/2025\\\/07\\\/blog-couchbase-building-agents.png\",\"width\":2400,\"height\":1256},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/ai-agents-build-with-couchbase\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Why You Only Need Couchbase When Building Your Agents\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/\",\"name\":\"The Couchbase Blog\",\"description\":\"Couchbase, the NoSQL Database\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#organization\",\"name\":\"The Couchbase Blog\",\"url\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/04\\\/admin-logo.png\",\"contentUrl\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/04\\\/admin-logo.png\",\"width\":218,\"height\":34,\"caption\":\"The Couchbase Blog\"},\"image\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#\\\/schema\\\/person\\\/e7ce322856dc848189fe3fa42e1f036a\",\"name\":\"Aaron Schneider - Solutions Engineer\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/1\\\/2022\\\/11\\\/image_2022-11-23_113040913-e1669231865579.png6f76d36012e483d8936b6c7fec3cda6b\",\"url\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/1\\\/2022\\\/11\\\/image_2022-11-23_113040913-e1669231865579.png\",\"contentUrl\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/1\\\/2022\\\/11\\\/image_2022-11-23_113040913-e1669231865579.png\",\"caption\":\"Aaron Schneider - Solutions Engineer\"},\"url\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/author\\\/aaronschneider\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Why You Only Need Couchbase When Building Your Agents - The Couchbase Blog","description":"As the demand for intelligent automation grows, agent-based systems are becoming a key part of modern AI strategies.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.couchbase.com\/blog\/ai-agents-build-with-couchbase\/","og_locale":"en_US","og_type":"article","og_title":"Why You Only Need Couchbase When Building Your Agents","og_description":"As the demand for intelligent automation grows, agent-based systems are becoming a key part of modern AI strategies.","og_url":"https:\/\/www.couchbase.com\/blog\/ai-agents-build-with-couchbase\/","og_site_name":"The Couchbase Blog","article_published_time":"2025-07-09T16:25:04+00:00","og_image":[{"width":2400,"height":1256,"url":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2025\/07\/blog-couchbase-building-agents.png","type":"image\/png"}],"author":"Aaron Schneider - Solutions Engineer","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Aaron Schneider - Solutions Engineer","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.couchbase.com\/blog\/ai-agents-build-with-couchbase\/#article","isPartOf":{"@id":"https:\/\/www.couchbase.com\/blog\/ai-agents-build-with-couchbase\/"},"author":{"name":"Aaron Schneider - Solutions Engineer","@id":"https:\/\/www.couchbase.com\/blog\/#\/schema\/person\/e7ce322856dc848189fe3fa42e1f036a"},"headline":"Why You Only Need Couchbase When Building Your Agents","datePublished":"2025-07-09T16:25:04+00:00","mainEntityOfPage":{"@id":"https:\/\/www.couchbase.com\/blog\/ai-agents-build-with-couchbase\/"},"wordCount":1239,"commentCount":0,"publisher":{"@id":"https:\/\/www.couchbase.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.couchbase.com\/blog\/ai-agents-build-with-couchbase\/#primaryimage"},"thumbnailUrl":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2025\/07\/blog-couchbase-building-agents.png","articleSection":["Agentic AI Applications","AI Services","Artificial Intelligence (AI)"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.couchbase.com\/blog\/ai-agents-build-with-couchbase\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.couchbase.com\/blog\/ai-agents-build-with-couchbase\/","url":"https:\/\/www.couchbase.com\/blog\/ai-agents-build-with-couchbase\/","name":"Why You Only Need Couchbase When Building Your Agents - The Couchbase Blog","isPartOf":{"@id":"https:\/\/www.couchbase.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.couchbase.com\/blog\/ai-agents-build-with-couchbase\/#primaryimage"},"image":{"@id":"https:\/\/www.couchbase.com\/blog\/ai-agents-build-with-couchbase\/#primaryimage"},"thumbnailUrl":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2025\/07\/blog-couchbase-building-agents.png","datePublished":"2025-07-09T16:25:04+00:00","description":"As the demand for intelligent automation grows, agent-based systems are becoming a key part of modern AI strategies.","breadcrumb":{"@id":"https:\/\/www.couchbase.com\/blog\/ai-agents-build-with-couchbase\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.couchbase.com\/blog\/ai-agents-build-with-couchbase\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.couchbase.com\/blog\/ai-agents-build-with-couchbase\/#primaryimage","url":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2025\/07\/blog-couchbase-building-agents.png","contentUrl":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2025\/07\/blog-couchbase-building-agents.png","width":2400,"height":1256},{"@type":"BreadcrumbList","@id":"https:\/\/www.couchbase.com\/blog\/ai-agents-build-with-couchbase\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.couchbase.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Why You Only Need Couchbase When Building Your Agents"}]},{"@type":"WebSite","@id":"https:\/\/www.couchbase.com\/blog\/#website","url":"https:\/\/www.couchbase.com\/blog\/","name":"The Couchbase Blog","description":"Couchbase, the NoSQL Database","publisher":{"@id":"https:\/\/www.couchbase.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.couchbase.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.couchbase.com\/blog\/#organization","name":"The Couchbase Blog","url":"https:\/\/www.couchbase.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.couchbase.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/2023\/04\/admin-logo.png","contentUrl":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/2023\/04\/admin-logo.png","width":218,"height":34,"caption":"The Couchbase Blog"},"image":{"@id":"https:\/\/www.couchbase.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.couchbase.com\/blog\/#\/schema\/person\/e7ce322856dc848189fe3fa42e1f036a","name":"Aaron Schneider - Solutions Engineer","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2022\/11\/image_2022-11-23_113040913-e1669231865579.png6f76d36012e483d8936b6c7fec3cda6b","url":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2022\/11\/image_2022-11-23_113040913-e1669231865579.png","contentUrl":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2022\/11\/image_2022-11-23_113040913-e1669231865579.png","caption":"Aaron Schneider - Solutions Engineer"},"url":"https:\/\/www.couchbase.com\/blog\/author\/aaronschneider\/"}]}},"acf":[],"authors":[{"term_id":9755,"user_id":83976,"is_guest":0,"slug":"aaronschneider","display_name":"Aaron Schneider - Solutions Engineer","avatar_url":{"url":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2022\/11\/image_2022-11-23_113040913-e1669231865579.png","url2x":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2022\/11\/image_2022-11-23_113040913-e1669231865579.png"},"0":null,"1":"","2":"","3":"","4":"","5":"","6":"","7":"","8":""}],"_links":{"self":[{"href":"https:\/\/www.couchbase.com\/blog\/wp-json\/wp\/v2\/posts\/17289","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.couchbase.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.couchbase.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/wp-json\/wp\/v2\/users\/83976"}],"replies":[{"embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/wp-json\/wp\/v2\/comments?post=17289"}],"version-history":[{"count":0,"href":"https:\/\/www.couchbase.com\/blog\/wp-json\/wp\/v2\/posts\/17289\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/wp-json\/wp\/v2\/media\/17290"}],"wp:attachment":[{"href":"https:\/\/www.couchbase.com\/blog\/wp-json\/wp\/v2\/media?parent=17289"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/wp-json\/wp\/v2\/categories?post=17289"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/wp-json\/wp\/v2\/tags?post=17289"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/wp-json\/wp\/v2\/ppma_author?post=17289"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}