<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: MCPs not working properly in Generative AI</title>
    <link>https://community.databricks.com/t5/generative-ai/mcps-not-working-properly/m-p/158440#M1852</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/233353"&gt;@arthurandrade&lt;/a&gt;&amp;nbsp;, I looked into this and here is what If found:&lt;/P&gt;
&lt;P&gt;These are really two separate problems, and the thing that untangles them is realizing that AI Playground, Chat in Genie (what used to sit under Databricks One), and Genie Code are three different surfaces with three different MCP capability models. The same server can behave differently in each, so it helps to reason about them one at a time.&lt;/P&gt;
&lt;P&gt;One clue from your setup points the way. Your Jira MCP adds fine in Genie Code, but OpenMetadata doesn't. That tells me Genie Code's MCP plumbing works for you in general, so the add failure is almost certainly specific to the OpenMetadata server, not a blanket Genie Code config problem.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;First issue:&lt;/STRONG&gt; OpenMetadata won't add in Genie Code. I'd check these roughly in order.&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Agent mode. MCP servers are only supported in Genie Code Agent mode, not chat. Adding from chat mode will fail.&lt;/LI&gt;
&lt;LI&gt;The 20 tool cap. Genie Code caps MCP at 20 tools across all servers combined. If OpenMetadata exposes a big tool surface and your other servers (Jira included) already use slots, the add can fail. Disable other tools first, then add OpenMetadata and selectively enable what you need.&lt;/LI&gt;
&lt;LI&gt;"Try again later" usually means a transient tool-listing failure. The managed proxy probably couldn't enumerate tools at that moment (an upstream 5xx, a slow handshake, a token that isn't valid yet). Retry first. If it sticks around, check AI Gateway, then MCPs, and look at the Unity AI Gateway usage dashboard under the External MCP Server tab for 5xx or error rates on that connection.&lt;/LI&gt;
&lt;LI&gt;Re-authenticate the exact UC connection and re-add. The docs are explicit that you have to log in to the connection before it can be used.&lt;/LI&gt;
&lt;LI&gt;Transport has to be Streamable HTTP. SSE is not supported. Confirm the UC HTTP connection points at the Streamable HTTP /mcp endpoint and that "Is mcp connection" is checked.&lt;/LI&gt;
&lt;LI&gt;If OpenMetadata is hosted as a custom Databricks App MCP, verify a few things: it's in the same workspace, it's exposed at exactly https://&amp;lt;server-url&amp;gt;/mcp, it runs stateless (mcp_server.http_app(stateless_http=True)), and your workspace URL is in the CORS allowlist if you're seeing CORS errors.&lt;/LI&gt;
&lt;LI&gt;Validate the tool schemas, for example with the MCP Inspector. If any OpenMetadata tool has a malformed or unsupported input schema, the "acquire tool definitions" step fails for the whole server and you get a generic add error.&lt;/LI&gt;
&lt;LI&gt;Region. External MCP only works where Model Serving is supported. Since Jira works for you, region is probably fine, but I'd still rule it out.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;For fast triage, point a UC connection at OpenMetadata and test it in AI Playground (you said it works there) against Genie Code with all other tools disabled. If Playground works but Genie Code still rejects it, you're most likely looking at the schema validation or transport path. At that point, open a support ticket with the connection name and a timestamp so they can pull the proxy logs.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Second issue:&lt;/STRONG&gt; Jira writes work in Genie Code, but Databricks Genie says "no WRITE capabilities." Here I want to be honest about my confidence.&lt;/P&gt;
&lt;P&gt;What the docs support is that the Genie surface is read oriented by design. Chat in Genie's external MCP and connector story is framed around searching documents to answer questions, and the managed Genie and Genie Space MCP servers are documented as read-only (Genie's generated SQL is always read-only). So write-capable external MCP actions in Chat in Genie may simply be unsupported, or supported inconsistently, today. The "no WRITE capabilities" message most likely reflects a Genie-side limitation, not your MCP lacking write.&lt;/P&gt;
&lt;P&gt;A few things to try and check. First, confirm reads work in Genie chat with a read-only Jira tool. If reads succeed but writes fail, that points hard at a Genie limitation or bug rather than your server. Second, annotate your write tools explicitly in the Jira MCP: set readOnlyHint to false, and destructiveHint to true where it applies. Clients treat absent annotations differently, so Genie Code may invoke regardless while Chat in Genie inspects the advertised capability. It's a cheap experiment, though it may not override a hard Genie restriction. Third, verify your OAuth scopes if any path uses the managed Atlassian connection. Its default scopes are read-only (read:jira-work, read:jira-user, read:confluence-content.all, offline_access) with no write:jira-work. Since you built your own MCP, double-check which credential and scope the Genie surface actually presents.&lt;/P&gt;
&lt;P&gt;Here's my honest "I don't know." I couldn't find documentation that clearly confirms Chat in Genie supports arbitrary write-capable MCP actions today, so I can't promise the annotation fix will make writes work there. If reads succeed but writes don't after the checks above, treat it as a likely product limitation and file a support ticket.&lt;/P&gt;
&lt;P&gt;The practical takeaway: use Genie Code in Agent mode for any tool or action workflow that needs write behavior, and treat Genie and Chat in Genie as primarily read, search, and answer oriented until Databricks documents write support more clearly.&lt;/P&gt;
&lt;P&gt;Regards, Louis.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Sources used in my research:&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Connect Genie Code to MCP servers (Microsoft Learn): &lt;A href="https://learn.microsoft.com/azure/databricks/genie-code/mcp" target="_blank"&gt;https://learn.microsoft.com/azure/databricks/genie-code/mcp&lt;/A&gt; and AWS: &lt;A href="https://docs.databricks.com/aws/en/genie-code/mcp" target="_blank"&gt;https://docs.databricks.com/aws/en/genie-code/mcp&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Install an external MCP server (Microsoft Learn): &lt;A href="https://learn.microsoft.com/en-us/azure/databricks/generative-ai/mcp/external-mcp" target="_blank"&gt;https://learn.microsoft.com/en-us/azure/databricks/generative-ai/mcp/external-mcp&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Use Databricks managed MCP servers, Genie and Genie Space are read-only: &lt;A href="https://docs.databricks.com/aws/en/generative-ai/mcp/managed-mcp" target="_blank"&gt;https://docs.databricks.com/aws/en/generative-ai/mcp/managed-mcp&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Chat in Genie (Databricks on AWS): &lt;A href="https://docs.databricks.com/aws/en/genie-ui/genie-chat" target="_blank"&gt;https://docs.databricks.com/aws/en/genie-ui/genie-chat&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Community, getting error while trying to use external MCP: &lt;A href="https://community.databricks.com/t5/generative-ai/getting-error-while-trying-to-use-external-mcp/td-p/139039" target="_blank"&gt;https://community.databricks.com/t5/generative-ai/getting-error-while-trying-to-use-external-mcp/td-p/139039&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;MCP spec, tool annotations and Streamable HTTP transport: &lt;A href="https://modelcontextprotocol.io/introduction" target="_blank"&gt;https://modelcontextprotocol.io/introduction&lt;/A&gt;&lt;/LI&gt;
&lt;/OL&gt;</description>
    <pubDate>Sat, 06 Jun 2026 00:17:05 GMT</pubDate>
    <dc:creator>Louis_Frolio</dc:creator>
    <dc:date>2026-06-06T00:17:05Z</dc:date>
    <item>
      <title>MCPs not working properly</title>
      <link>https://community.databricks.com/t5/generative-ai/mcps-not-working-properly/m-p/158225#M1848</link>
      <description>&lt;P&gt;Has anyone facing the same issue?&lt;/P&gt;&lt;P&gt;Basically we created a MCP to use OpenMetadata functionalities. It works fine on AI Playground, and it works fine on Databricks Genie (previously, Databricks One). But when I try to add this MCP on Genie Code, it fails with a generic message:&lt;/P&gt;&lt;P&gt;"&lt;SPAN&gt;External MCP: ... could not be added. Please see the&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://learn.microsoft.com/azure/databricks/genie-code/mcp#add-mcp-servers-to-genie-code" rel="noopener noreferrer" target="_blank"&gt;documentation&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;for more information and try again later."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The second issue is: our MCP Jira is not working properly. It works fine, with WRITE capabilities on Genie Code. But when I try to use on Databricks Genie, it fails saying that it doesn't contains WRITE capabilities (but it contains and it's working).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Anyone facing similar issues?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2026 15:13:48 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/mcps-not-working-properly/m-p/158225#M1848</guid>
      <dc:creator>arthurandrade</dc:creator>
      <dc:date>2026-06-03T15:13:48Z</dc:date>
    </item>
    <item>
      <title>Re: MCPs not working properly</title>
      <link>https://community.databricks.com/t5/generative-ai/mcps-not-working-properly/m-p/158440#M1852</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/233353"&gt;@arthurandrade&lt;/a&gt;&amp;nbsp;, I looked into this and here is what If found:&lt;/P&gt;
&lt;P&gt;These are really two separate problems, and the thing that untangles them is realizing that AI Playground, Chat in Genie (what used to sit under Databricks One), and Genie Code are three different surfaces with three different MCP capability models. The same server can behave differently in each, so it helps to reason about them one at a time.&lt;/P&gt;
&lt;P&gt;One clue from your setup points the way. Your Jira MCP adds fine in Genie Code, but OpenMetadata doesn't. That tells me Genie Code's MCP plumbing works for you in general, so the add failure is almost certainly specific to the OpenMetadata server, not a blanket Genie Code config problem.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;First issue:&lt;/STRONG&gt; OpenMetadata won't add in Genie Code. I'd check these roughly in order.&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Agent mode. MCP servers are only supported in Genie Code Agent mode, not chat. Adding from chat mode will fail.&lt;/LI&gt;
&lt;LI&gt;The 20 tool cap. Genie Code caps MCP at 20 tools across all servers combined. If OpenMetadata exposes a big tool surface and your other servers (Jira included) already use slots, the add can fail. Disable other tools first, then add OpenMetadata and selectively enable what you need.&lt;/LI&gt;
&lt;LI&gt;"Try again later" usually means a transient tool-listing failure. The managed proxy probably couldn't enumerate tools at that moment (an upstream 5xx, a slow handshake, a token that isn't valid yet). Retry first. If it sticks around, check AI Gateway, then MCPs, and look at the Unity AI Gateway usage dashboard under the External MCP Server tab for 5xx or error rates on that connection.&lt;/LI&gt;
&lt;LI&gt;Re-authenticate the exact UC connection and re-add. The docs are explicit that you have to log in to the connection before it can be used.&lt;/LI&gt;
&lt;LI&gt;Transport has to be Streamable HTTP. SSE is not supported. Confirm the UC HTTP connection points at the Streamable HTTP /mcp endpoint and that "Is mcp connection" is checked.&lt;/LI&gt;
&lt;LI&gt;If OpenMetadata is hosted as a custom Databricks App MCP, verify a few things: it's in the same workspace, it's exposed at exactly https://&amp;lt;server-url&amp;gt;/mcp, it runs stateless (mcp_server.http_app(stateless_http=True)), and your workspace URL is in the CORS allowlist if you're seeing CORS errors.&lt;/LI&gt;
&lt;LI&gt;Validate the tool schemas, for example with the MCP Inspector. If any OpenMetadata tool has a malformed or unsupported input schema, the "acquire tool definitions" step fails for the whole server and you get a generic add error.&lt;/LI&gt;
&lt;LI&gt;Region. External MCP only works where Model Serving is supported. Since Jira works for you, region is probably fine, but I'd still rule it out.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;For fast triage, point a UC connection at OpenMetadata and test it in AI Playground (you said it works there) against Genie Code with all other tools disabled. If Playground works but Genie Code still rejects it, you're most likely looking at the schema validation or transport path. At that point, open a support ticket with the connection name and a timestamp so they can pull the proxy logs.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Second issue:&lt;/STRONG&gt; Jira writes work in Genie Code, but Databricks Genie says "no WRITE capabilities." Here I want to be honest about my confidence.&lt;/P&gt;
&lt;P&gt;What the docs support is that the Genie surface is read oriented by design. Chat in Genie's external MCP and connector story is framed around searching documents to answer questions, and the managed Genie and Genie Space MCP servers are documented as read-only (Genie's generated SQL is always read-only). So write-capable external MCP actions in Chat in Genie may simply be unsupported, or supported inconsistently, today. The "no WRITE capabilities" message most likely reflects a Genie-side limitation, not your MCP lacking write.&lt;/P&gt;
&lt;P&gt;A few things to try and check. First, confirm reads work in Genie chat with a read-only Jira tool. If reads succeed but writes fail, that points hard at a Genie limitation or bug rather than your server. Second, annotate your write tools explicitly in the Jira MCP: set readOnlyHint to false, and destructiveHint to true where it applies. Clients treat absent annotations differently, so Genie Code may invoke regardless while Chat in Genie inspects the advertised capability. It's a cheap experiment, though it may not override a hard Genie restriction. Third, verify your OAuth scopes if any path uses the managed Atlassian connection. Its default scopes are read-only (read:jira-work, read:jira-user, read:confluence-content.all, offline_access) with no write:jira-work. Since you built your own MCP, double-check which credential and scope the Genie surface actually presents.&lt;/P&gt;
&lt;P&gt;Here's my honest "I don't know." I couldn't find documentation that clearly confirms Chat in Genie supports arbitrary write-capable MCP actions today, so I can't promise the annotation fix will make writes work there. If reads succeed but writes don't after the checks above, treat it as a likely product limitation and file a support ticket.&lt;/P&gt;
&lt;P&gt;The practical takeaway: use Genie Code in Agent mode for any tool or action workflow that needs write behavior, and treat Genie and Chat in Genie as primarily read, search, and answer oriented until Databricks documents write support more clearly.&lt;/P&gt;
&lt;P&gt;Regards, Louis.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Sources used in my research:&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Connect Genie Code to MCP servers (Microsoft Learn): &lt;A href="https://learn.microsoft.com/azure/databricks/genie-code/mcp" target="_blank"&gt;https://learn.microsoft.com/azure/databricks/genie-code/mcp&lt;/A&gt; and AWS: &lt;A href="https://docs.databricks.com/aws/en/genie-code/mcp" target="_blank"&gt;https://docs.databricks.com/aws/en/genie-code/mcp&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Install an external MCP server (Microsoft Learn): &lt;A href="https://learn.microsoft.com/en-us/azure/databricks/generative-ai/mcp/external-mcp" target="_blank"&gt;https://learn.microsoft.com/en-us/azure/databricks/generative-ai/mcp/external-mcp&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Use Databricks managed MCP servers, Genie and Genie Space are read-only: &lt;A href="https://docs.databricks.com/aws/en/generative-ai/mcp/managed-mcp" target="_blank"&gt;https://docs.databricks.com/aws/en/generative-ai/mcp/managed-mcp&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Chat in Genie (Databricks on AWS): &lt;A href="https://docs.databricks.com/aws/en/genie-ui/genie-chat" target="_blank"&gt;https://docs.databricks.com/aws/en/genie-ui/genie-chat&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Community, getting error while trying to use external MCP: &lt;A href="https://community.databricks.com/t5/generative-ai/getting-error-while-trying-to-use-external-mcp/td-p/139039" target="_blank"&gt;https://community.databricks.com/t5/generative-ai/getting-error-while-trying-to-use-external-mcp/td-p/139039&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;MCP spec, tool annotations and Streamable HTTP transport: &lt;A href="https://modelcontextprotocol.io/introduction" target="_blank"&gt;https://modelcontextprotocol.io/introduction&lt;/A&gt;&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Sat, 06 Jun 2026 00:17:05 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/mcps-not-working-properly/m-p/158440#M1852</guid>
      <dc:creator>Louis_Frolio</dc:creator>
      <dc:date>2026-06-06T00:17:05Z</dc:date>
    </item>
    <item>
      <title>Re: MCPs not working properly</title>
      <link>https://community.databricks.com/t5/generative-ai/mcps-not-working-properly/m-p/158726#M1855</link>
      <description>&lt;P&gt;Hi Louis.&lt;/P&gt;&lt;P&gt;Thank you for your time and your response in here.&lt;/P&gt;&lt;P&gt;Let me address that, step by step.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;First issue:&lt;/STRONG&gt;&lt;SPAN&gt; OpenMetadata won't add in Genie Code. I'd check these roughly in order.&lt;/SPAN&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;Agent mode also fails. I tried it.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;It won't allow me to select the tools. It works with other MCPs, not with Open Metadata. I tried it.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Most part of the response is 200, other responses are 405. No error message in the dashboard,&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;The MCP uses Bearer Token. There's no login on it.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;It is.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;It's not a custom Databricks App MCP.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Will try using that. I found MCP Inspector really complex, but I will give a&amp;nbsp;&lt;/SPAN&gt;try on it.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Yeah, I have a ticket opened for that case. It works fine on AI Playground and on Genie, but not on Genie Code.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Second issue:&lt;/STRONG&gt;&lt;SPAN&gt; Jira writes work in Genie Code, but Databricks Genie says "no WRITE capabilities." &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Yeah, this is a limitation on Genie. Using Genie Code to perform actions is good, for coding, but it requires &lt;STRONG&gt;manual interaction, &lt;/STRONG&gt;that only makes sense for &lt;STRONG&gt;coding.&lt;/STRONG&gt; What I expect from an agent: autonomy and capacity of effectively &lt;STRONG&gt;do things, &lt;/STRONG&gt;for example: flag a ticket, add a comment based on daily analysis, etc.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The agent is not doing that. It's just reading, and retrieving JIRA tickets is something easy that I can do, I don't need an agent to do that for me.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Already confirmed with Databricks support team. Genie can't perform actions, while Genie Code can. Weird, but I hope you guys can solve this in the next DAIS.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks for your time and attention, Louis! &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2026 13:38:21 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/mcps-not-working-properly/m-p/158726#M1855</guid>
      <dc:creator>arthurandrade</dc:creator>
      <dc:date>2026-06-10T13:38:21Z</dc:date>
    </item>
  </channel>
</rss>

