{"id":1014455,"date":"2026-06-29T17:11:19","date_gmt":"2026-06-29T20:11:19","guid":{"rendered":"https:\/\/www.psr-inc.com\/?post_type=analytics_post&#038;p=1014455"},"modified":"2026-06-29T19:07:29","modified_gmt":"2026-06-29T22:07:29","slug":"expanding-the-sddp-platform-experience-through-ai-chatbots-mcps-and-ai-reasoning","status":"publish","type":"analytics_post","link":"https:\/\/www.psr-inc.com\/en\/analytics-report\/post\/expanding-the-sddp-platform-experience-through-ai-chatbots-mcps-and-ai-reasoning\/","title":{"rendered":"Expanding the SDDP platform experience through AI: Chatbots, MCPs, and AI reasoning"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Imagine two people trying to reach the same destination. One has an old car with a paper map; the other, a modern vehicle with integrated systems, real-time navigation, route optimization and intelligent assistance. Both are still driving, and both remain responsible for their decisions. But one of them will move faster, react quicker, process more information and reach the destination far more efficiently. That, in essence, is what Artificial Intelligence represents today. As Sam Altman, OpenAI\u2019s CEO, has put it: \u201cAI will not replace humans, but humans using AI will replace those who don\u2019t.\u201d<\/p>\n\n<p class=\"wp-block-paragraph\">But the great car only improves your travel experience; it does not turn you into a good driver. To really take advantage of AI, the Anthropic AI Fluency Course defines four steps that matter. The first is delegation: you must know where you want to go and understand what AI can do well. The second is description: you must be able to transmit that intention to the AI, giving it the role to play, the context it should use and the rules it must follow. If you cannot configure the car\u2019s system and type the destination into the GPS, the supercar will not help you. Once you start driving, you need discernment: the AI will suggest possibilities, and you remain responsible for checking that the route it picked is actually the right one for you. How many times has the GPS chosen a fast route full of tolls, or one that simply does not feel safe? With AI, it is the same. The last step is diligence: never sign your name on something you cannot explain. You can delegate a task, but never the understanding behind it. In our analogy, you can switch on the autopilot, but you should not trust it so completely that you would no longer know how to take back the wheel when something goes wrong.<\/p>\n\n<p class=\"wp-block-paragraph\">In short, the four Ds form a chain. Delegation is about knowing where AI helps and where it does not. Description is about giving it the role, the context and the rules it needs to do the job. These two come before the model is used. The other two come after: discernment is checking that the route the AI chose is the right one \u2014 that the approach makes sense and the output is actually useful and correct \u2014 and diligence is the awareness that, however good the assistant, the signature on the final answer is yours. Throughout this article, as we walk through the ways AI now connects to the PSR models, these four steps are worth keeping in mind: they are what separates using AI well from merely using it.<\/p>\n\n<h2 class=\"wp-block-heading\">AI\u2019s traditional use<\/h2>\n\n<p class=\"wp-block-paragraph\">The first step away from the paper map was the rise of the LLMs. The earliest way of using them was the simplest one: write a message (a prompt), send it to the model and read the answer that comes back. How does this actually work? LLMs (Large Language Models) are trained on enormous text datasets. The words are first tokenized, i.e., broken into small pieces and converted into numerical IDs the model can process. From that training, the model learns the probability that a given word or phrase should follow another in a given context and uses those probabilities to generate new content on demand. That is what we call generative AI. It produces emails, summaries, code snippets, and drafts of reports. The result is genuinely useful, but it does have limits.<\/p>\n\n<p class=\"wp-block-paragraph\">A generic LLM is constrained by the dataset it was trained on, and retraining a model is expensive enough that it cannot be done in real time. The consequence is a lack of context. If you ask the AI about something specific to PSR that was not part of its training, it does not admit it; it guesses, and what is worse, it does so with complete confidence. Ask it, for instance, \u201cwhat is a renewable station in SDDP?\u201d and the model will answer using public information about the physical concept of renewable plants, something like: \u201cA Renewable Station is a power generation facility that produces electricity from naturally replenished energy sources such as solar, wind, hydro, or biomass.\u201d This is what we call hallucination.<\/p>\n\n<h2 class=\"wp-block-heading\">Grounded intelligence: an assistant that knows PSR<\/h2>\n\n<p class=\"wp-block-paragraph\">To close that lack of context, the LLM must somehow access PSR\u2019s own knowledge. Since fully retraining the model with PSR documentation would be expensive, imagine instead that we can plug a pen-drive into the LLM at the moment it needs to be answered. The technique that does precisely that is Retrieval-Augmented Generation (RAG). It works in four small steps. First, the PSR documentation (manuals, methodology notes, examples) is split into smaller pieces called chunks, tokenized and embedded into a vector index, so that it speaks the same numeric language the LLM uses to generate text (0). When a user asks a question (1), the question itself is also vectorized, and a similarity search using cosine distance returns the passages whose meaning is closest to it. Those passages are injected into the prompt as context, so the LLM receives both the user\u2019s question and the documentation it needs to answer it correctly \u2014 exactly the description step we talked about in the opening paragraph (2). The LLM then composes a grounded answer from that evidence, not from its general training (3).<\/p>\n\n<p class=\"wp-block-paragraph\">The PSR Assistant uses exactly this technique to let users ask specific questions about PSR. It does not only answer the question; it also returns the link to the relevant page in the PSR Knowledge Hub , so the user can double-check the information. Beyond avoiding hallucinations, the real gain is time: instead of searching across hundreds of pages, the user gets a direct, sourced answer. The Assistant has two siblings built on the same pattern, but grounded on the source code of PSR libraries\u2014 one for PSR Factory , our Python automation API, and one for PSRIO, our BI tool. For users who are not yet fluent in those libraries, they short-cut the blank-page problem: ask for a typical script and get a working starting point you can adapt.<\/p>\n\n<figure class=\"wp-block-image aligncenter size-full\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1004\" height=\"456\" src=\"https:\/\/www.psr-inc.com\/wp-content\/uploads\/2026\/06\/image-14.png\" alt=\"\" class=\"wp-image-1014162\" srcset=\"https:\/\/www.psr-inc.com\/wp-content\/uploads\/2026\/06\/image-14.png 1004w, https:\/\/www.psr-inc.com\/wp-content\/uploads\/2026\/06\/image-14-300x136.png 300w, https:\/\/www.psr-inc.com\/wp-content\/uploads\/2026\/06\/image-14-768x349.png 768w\" sizes=\"(max-width: 1004px) 100vw, 1004px\" \/><\/figure>\n\n<p class=\"legenda-padrao\">Figure 1 \u2014 RAG anchors the LLM on PSR\u2019s own documentation, replacing hallucinated definitions with grounded, sourced answers.<\/p><br\/>\n\n<h2 class=\"wp-block-heading\">Agentic AI: from answers to actions<\/h2>\n\n<p class=\"wp-block-paragraph\">But what if AI could go beyond generating content and start executing tasks? Imagine that the manual work an analyst performs every day \u2014 discovering the input data of a model, editing that data, running cases on-premises or on the cloud, visualizing the results \u2014 could be turned into automated tasks triggered by a single request in natural language. This is the third step in the journey: from generative AI to agentic AI, a system designed to execute complex workflows by combining autonomous planning, long-term memory and the ability to interact with external applications. But if the LLM still has limited data, how can it possibly know about our data?<\/p>\n\n<p class=\"wp-block-paragraph\">Modern AI platforms \u2014 OpenAI\u2019s, Anthropic\u2019s and others \u2014 now support customized branches that give the model access to external applications. The model then behaves as an orchestrator: it uses those branches, together with its own LLM, to execute tasks for the user. To execute a task automatically, the model needs access to a customized code function that it can call, and that can in turn reach external data sources. The standard way to make this connection is the Model Context Protocol (MCP), an open protocol that lets any LLM interact with external systems through a consistent interface. An MCP server publishes a catalogue of tools \u2014 typed functions, each with a clear description \u2014 that the model can browse and invoke. The PSR Agent is our MCP server. It exposes functions that, through the PSR Factory Python API, talk to PSR models databases. Orchestration usually begins with an internal plan of what should be done; the model then compares this plan against the descriptions in the tool catalogue, by similarity, and selects the tool that best matches the task at hand.<\/p>\n\n<p class=\"wp-block-paragraph\">For the AI to perform all of that well, it needs a good description of how these tools works and which workflow should be used to each task. But it would be tedious to write those instructions from scratch every time. The natural solution is to package them once and reuse them. This is the idea behind Skills: bundles of instructions, examples and helper scripts that the agent loads on demand when it recognizes a familiar task type. Where MCP gives the AI access, Skills give it expertise \u2014 the right order in which to call the tools, the common pitfalls to avoid, the PSR house style for reporting results. A typical workflow is illustrated below; at the end of it, the LLM is used once more, this time to write up the result or to report a success or failure message.<\/p>\n\n<figure class=\"wp-block-image aligncenter size-full\"><img decoding=\"async\" width=\"938\" height=\"323\" src=\"https:\/\/www.psr-inc.com\/wp-content\/uploads\/2026\/06\/image-15.png\" alt=\"\" class=\"wp-image-1014165\" srcset=\"https:\/\/www.psr-inc.com\/wp-content\/uploads\/2026\/06\/image-15.png 938w, https:\/\/www.psr-inc.com\/wp-content\/uploads\/2026\/06\/image-15-300x103.png 300w, https:\/\/www.psr-inc.com\/wp-content\/uploads\/2026\/06\/image-15-768x264.png 768w\" sizes=\"(max-width: 938px) 100vw, 938px\" \/><\/figure>\n\n<p class=\"legenda-padrao\">Figure 2 \u2014 The PSR Agent: an AI model uses its LLM to discover and load Skills for domain expertise, accesses PSR tools through MCP, and reads from and writes to the SDDP database via PSR Factory.<\/p><br\/>\n\n<p class=\"wp-block-paragraph\">The toolbox PSR built into the Agent is shaped around the parts of the day that take the longest. Tracking down an object, navigating its relationships or filtering elements by condition becomes a single question, rather than a sequence of tabs and clicks through the interface. Repetitive bulk operations \u2014 updating capacities, scaling time series, creating new objects \u2014 can be executed automatically in a safe-copy mode that preserves the original case. Simulations in SDDP, OptGen and NCP can be launched directly from the conversation, with the Agent monitoring execution status and extracting structured summaries of errors, warnings and convergence information from the run logs. Scenario comparisons, revenue calculations and result analyses can also be performed through the conversation; a single instruction is enough to package the outputs and notify the team.<\/p>\n\n<p class=\"wp-block-paragraph\">In summary, the current set of tools was designed to reduce the repetitive operational work traditionally performed through the graphical interface. The project is intended to evolve incrementally: as new recurring workflows and user needs are identified, additional capabilities will be incorporated into the Agent over time.<\/p>\n\n<p class=\"wp-block-paragraph\">In practice, a single prompt such as \u201cupdate Plant X\u2019s installed capacity to 1,350 MW, run SDDP for the 2026 horizon, and email the results to the operations team\u201d already maps to a workflow that previously required several manual steps across different interfaces. The user still reviews the proposed actions and validates the final answer, but the operational friction drops sharply.<\/p>\n\n<h2 class=\"wp-block-heading\">The next step: a reasoning layer<\/h2>\n\n<p class=\"wp-block-paragraph\">Grounding the LLM in PSR knowledge and connecting it to PSR tools covers the \u201cinformation\u201d and \u201cexecution\u201d parts of the problem. The third piece, still in development, is the analysis layer: an agent that does not only answer questions or run operational tasks on request, but interprets simulation results, forms hypotheses about what is driving them, and pulls the data needed to test those hypotheses.<\/p>\n\n<p class=\"wp-block-paragraph\">The prototype, currently under development, is structured as a multi-agent pipeline. An orchestrator dispatches the user request to specialized sub-agents \u2014 one for problem classification, one for cause hypothesis, one for data discovery \u2014 each with its own narrow set of tools. The orchestrator then combines their outputs into a single synthesized answer, with traceable evidence the analyst can audit step by step.<\/p>\n\n<figure class=\"wp-block-image aligncenter size-full\"><img decoding=\"async\" width=\"875\" height=\"425\" src=\"https:\/\/www.psr-inc.com\/wp-content\/uploads\/2026\/06\/image-16.png\" alt=\"\" class=\"wp-image-1014168\" srcset=\"https:\/\/www.psr-inc.com\/wp-content\/uploads\/2026\/06\/image-16.png 875w, https:\/\/www.psr-inc.com\/wp-content\/uploads\/2026\/06\/image-16-300x146.png 300w, https:\/\/www.psr-inc.com\/wp-content\/uploads\/2026\/06\/image-16-768x373.png 768w\" sizes=\"(max-width: 875px) 100vw, 875px\" \/><\/figure>\n\n<p class=\"legenda-padrao\">Figure 3 \u2014 Reasoning agent under development: specialized sub-agents classify the problem, generate hypotheses and discover data, then return a synthesized, evidence-backed analytical answer.<\/p><br\/>\n\n<p class=\"wp-block-paragraph\">Taken together, RAG, agentic AI and the reasoning layer trace a clear path for AI inside PSR: from explaining the models, to operating them, to reasoning over their results. The goal is not to replace the analyst, but to take the routine work off the analyst\u2019s plate, so that the time saved goes to what really needs human judgement.<\/p>\n","protected":false},"featured_media":1014660,"template":"","meta":{"_acf_changed":false},"report_section":[479],"class_list":["post-1014455","analytics_post","type-analytics_post","status-publish","has-post-thumbnail","hentry","report_section-inbrief"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Expanding the SDDP platform experience through AI: Chatbots, MCPs, and AI reasoning - PSR Energy<\/title>\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.psr-inc.com\/en\/analytics-report\/post\/expanding-the-sddp-platform-experience-through-ai-chatbots-mcps-and-ai-reasoning\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Expanding the SDDP platform experience through AI: Chatbots, MCPs, and AI reasoning - PSR Energy\" \/>\n<meta property=\"og:description\" content=\"Imagine two people trying to reach the same destination. One has an old car with a paper map; the other, a modern vehicle with integrated systems, real-time navigation, route optimization and intelligent assistance. Both are still driving, and both remain responsible for their decisions. But one of them will move faster, react quicker, process more [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.psr-inc.com\/en\/analytics-report\/post\/expanding-the-sddp-platform-experience-through-ai-chatbots-mcps-and-ai-reasoning\/\" \/>\n<meta property=\"og:site_name\" content=\"PSR Energy\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/psrenergy\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-29T22:07:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.psr-inc.com\/wp-content\/uploads\/2026\/06\/expanding-sddp.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"576\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@psrenergy\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.psr-inc.com\\\/en\\\/analytics-report\\\/post\\\/expanding-the-sddp-platform-experience-through-ai-chatbots-mcps-and-ai-reasoning\\\/\",\"url\":\"https:\\\/\\\/www.psr-inc.com\\\/en\\\/analytics-report\\\/post\\\/expanding-the-sddp-platform-experience-through-ai-chatbots-mcps-and-ai-reasoning\\\/\",\"name\":\"Expanding the SDDP platform experience through AI: Chatbots, MCPs, and AI reasoning - PSR Energy\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.psr-inc.com\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.psr-inc.com\\\/en\\\/analytics-report\\\/post\\\/expanding-the-sddp-platform-experience-through-ai-chatbots-mcps-and-ai-reasoning\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.psr-inc.com\\\/en\\\/analytics-report\\\/post\\\/expanding-the-sddp-platform-experience-through-ai-chatbots-mcps-and-ai-reasoning\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.psr-inc.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/expanding-sddp.webp\",\"datePublished\":\"2026-06-29T20:11:19+00:00\",\"dateModified\":\"2026-06-29T22:07:29+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.psr-inc.com\\\/en\\\/analytics-report\\\/post\\\/expanding-the-sddp-platform-experience-through-ai-chatbots-mcps-and-ai-reasoning\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.psr-inc.com\\\/en\\\/analytics-report\\\/post\\\/expanding-the-sddp-platform-experience-through-ai-chatbots-mcps-and-ai-reasoning\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.psr-inc.com\\\/en\\\/analytics-report\\\/post\\\/expanding-the-sddp-platform-experience-through-ai-chatbots-mcps-and-ai-reasoning\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.psr-inc.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/expanding-sddp.webp\",\"contentUrl\":\"https:\\\/\\\/www.psr-inc.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/expanding-sddp.webp\",\"width\":1024,\"height\":576},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.psr-inc.com\\\/en\\\/analytics-report\\\/post\\\/expanding-the-sddp-platform-experience-through-ai-chatbots-mcps-and-ai-reasoning\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.psr-inc.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Posts do Analytics Report\",\"item\":\"https:\\\/\\\/www.psr-inc.com\\\/en\\\/analytics-report\\\/posts\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Expanding the SDDP platform experience through AI: Chatbots, MCPs, and AI reasoning\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.psr-inc.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.psr-inc.com\\\/en\\\/\",\"name\":\"PSR\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.psr-inc.com\\\/en\\\/#organization\"},\"alternateName\":\"PSR Energy Consulting\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.psr-inc.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.psr-inc.com\\\/en\\\/#organization\",\"name\":\"PSR\",\"alternateName\":\"PSR Energy Consulting\",\"url\":\"https:\\\/\\\/www.psr-inc.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.psr-inc.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.psr-inc.com\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/logo-psr.svg\",\"contentUrl\":\"https:\\\/\\\/www.psr-inc.com\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/logo-psr.svg\",\"width\":1056,\"height\":816,\"caption\":\"PSR\"},\"image\":{\"@id\":\"https:\\\/\\\/www.psr-inc.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/psrenergy\",\"https:\\\/\\\/x.com\\\/psrenergy\",\"https:\\\/\\\/www.instagram.com\\\/psrenergy\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/psrenergy\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Expanding the SDDP platform experience through AI: Chatbots, MCPs, and AI reasoning - PSR Energy","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.psr-inc.com\/en\/analytics-report\/post\/expanding-the-sddp-platform-experience-through-ai-chatbots-mcps-and-ai-reasoning\/","og_locale":"en_US","og_type":"article","og_title":"Expanding the SDDP platform experience through AI: Chatbots, MCPs, and AI reasoning - PSR Energy","og_description":"Imagine two people trying to reach the same destination. One has an old car with a paper map; the other, a modern vehicle with integrated systems, real-time navigation, route optimization and intelligent assistance. Both are still driving, and both remain responsible for their decisions. But one of them will move faster, react quicker, process more [&hellip;]","og_url":"https:\/\/www.psr-inc.com\/en\/analytics-report\/post\/expanding-the-sddp-platform-experience-through-ai-chatbots-mcps-and-ai-reasoning\/","og_site_name":"PSR Energy","article_publisher":"https:\/\/www.facebook.com\/psrenergy","article_modified_time":"2026-06-29T22:07:29+00:00","og_image":[{"width":1024,"height":576,"url":"https:\/\/www.psr-inc.com\/wp-content\/uploads\/2026\/06\/expanding-sddp.webp","type":"image\/webp"}],"twitter_card":"summary_large_image","twitter_site":"@psrenergy","twitter_misc":{"Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.psr-inc.com\/en\/analytics-report\/post\/expanding-the-sddp-platform-experience-through-ai-chatbots-mcps-and-ai-reasoning\/","url":"https:\/\/www.psr-inc.com\/en\/analytics-report\/post\/expanding-the-sddp-platform-experience-through-ai-chatbots-mcps-and-ai-reasoning\/","name":"Expanding the SDDP platform experience through AI: Chatbots, MCPs, and AI reasoning - PSR Energy","isPartOf":{"@id":"https:\/\/www.psr-inc.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.psr-inc.com\/en\/analytics-report\/post\/expanding-the-sddp-platform-experience-through-ai-chatbots-mcps-and-ai-reasoning\/#primaryimage"},"image":{"@id":"https:\/\/www.psr-inc.com\/en\/analytics-report\/post\/expanding-the-sddp-platform-experience-through-ai-chatbots-mcps-and-ai-reasoning\/#primaryimage"},"thumbnailUrl":"https:\/\/www.psr-inc.com\/wp-content\/uploads\/2026\/06\/expanding-sddp.webp","datePublished":"2026-06-29T20:11:19+00:00","dateModified":"2026-06-29T22:07:29+00:00","breadcrumb":{"@id":"https:\/\/www.psr-inc.com\/en\/analytics-report\/post\/expanding-the-sddp-platform-experience-through-ai-chatbots-mcps-and-ai-reasoning\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.psr-inc.com\/en\/analytics-report\/post\/expanding-the-sddp-platform-experience-through-ai-chatbots-mcps-and-ai-reasoning\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.psr-inc.com\/en\/analytics-report\/post\/expanding-the-sddp-platform-experience-through-ai-chatbots-mcps-and-ai-reasoning\/#primaryimage","url":"https:\/\/www.psr-inc.com\/wp-content\/uploads\/2026\/06\/expanding-sddp.webp","contentUrl":"https:\/\/www.psr-inc.com\/wp-content\/uploads\/2026\/06\/expanding-sddp.webp","width":1024,"height":576},{"@type":"BreadcrumbList","@id":"https:\/\/www.psr-inc.com\/en\/analytics-report\/post\/expanding-the-sddp-platform-experience-through-ai-chatbots-mcps-and-ai-reasoning\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.psr-inc.com\/en\/"},{"@type":"ListItem","position":2,"name":"Posts do Analytics Report","item":"https:\/\/www.psr-inc.com\/en\/analytics-report\/posts\/"},{"@type":"ListItem","position":3,"name":"Expanding the SDDP platform experience through AI: Chatbots, MCPs, and AI reasoning"}]},{"@type":"WebSite","@id":"https:\/\/www.psr-inc.com\/en\/#website","url":"https:\/\/www.psr-inc.com\/en\/","name":"PSR","description":"","publisher":{"@id":"https:\/\/www.psr-inc.com\/en\/#organization"},"alternateName":"PSR Energy Consulting","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.psr-inc.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.psr-inc.com\/en\/#organization","name":"PSR","alternateName":"PSR Energy Consulting","url":"https:\/\/www.psr-inc.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.psr-inc.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/www.psr-inc.com\/wp-content\/uploads\/2023\/03\/logo-psr.svg","contentUrl":"https:\/\/www.psr-inc.com\/wp-content\/uploads\/2023\/03\/logo-psr.svg","width":1056,"height":816,"caption":"PSR"},"image":{"@id":"https:\/\/www.psr-inc.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/psrenergy","https:\/\/x.com\/psrenergy","https:\/\/www.instagram.com\/psrenergy\/","https:\/\/www.linkedin.com\/company\/psrenergy\/"]}]}},"_links":{"self":[{"href":"https:\/\/www.psr-inc.com\/en\/wp-json\/wp\/v2\/analytics_post\/1014455","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.psr-inc.com\/en\/wp-json\/wp\/v2\/analytics_post"}],"about":[{"href":"https:\/\/www.psr-inc.com\/en\/wp-json\/wp\/v2\/types\/analytics_post"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.psr-inc.com\/en\/wp-json\/wp\/v2\/media\/1014660"}],"wp:attachment":[{"href":"https:\/\/www.psr-inc.com\/en\/wp-json\/wp\/v2\/media?parent=1014455"}],"wp:term":[{"taxonomy":"report_section","embeddable":true,"href":"https:\/\/www.psr-inc.com\/en\/wp-json\/wp\/v2\/report_section?post=1014455"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}