{"id":5032,"date":"2025-08-06T14:34:45","date_gmt":"2025-08-06T21:34:45","guid":{"rendered":"https:\/\/live-slack-developers.pantheonsite.io\/?p=5032"},"modified":"2026-04-14T21:01:03","modified_gmt":"2026-04-15T04:01:03","slug":"slack-platform-mcp-server-experience","status":"publish","type":"post","link":"https:\/\/slack.dev\/slack-platform-mcp-server-experience\/","title":{"rendered":"Vibe coding with Cursor and the Slack platform MCP server"},"content":{"rendered":"\n<p><i>A lightweight experiment in building Slack apps faster (and why it\u2019s about to get a lot easier for everyone).<\/i><\/p>\n\n\n\n<p>If you\u2019ve ever tried using AI to code a Slack app, you probably hit some roadblocks: the setup was fiddly (not anymore with our <a href=\"https:\/\/tools.slack.dev\/slack-cli\/\">Slack CLI<\/a>), the code is often generic, and the AI usually doesn\u2019t know what a Slack trigger or Block Kit payload looks like.<\/p>\n\n\n\n<p>For me, building new demos for workshops meant spending more time correcting AI-generated code than actually writing it. The process looked like this: I\u2019d manually scaffold the app, then ask AI to help with bits of logic. The results were usually mediocre\u2014the code wasn\u2019t tailored to Slack, and any attempt to change it often broke the entire thing. The biggest problem? The AI simply lacked the latest context for building on our platform.<\/p>\n\n\n\n<p>But what if AI had that context\u2014the real, up-to-date knowledge about how to build for Slack?<\/p>\n\n\n\n<p>That\u2019s the idea behind the <b>Slack Platform MCP server<\/b>. It\u2019s a tool we\u2019re about to open source that provides a knowledge layer to your local dev environment, acting as a direct source of truth for all things Slack app development. I recently connected it to <a href=\"https:\/\/cursor.com\/en\">Cursor<\/a>\u2014an AI-powered code editor\u2014to see if it could turn my development frustrations into something&#8230; well, something closer to &#8220;vibe coding.&#8221;<\/p>\n\n\n\n<p>My goal was to quickly build a Pomodoro timer app. And this time, the results were dramatically different from the start. Here&#8217;s how it went.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Why I tried this<\/h3>\n\n\n\n<p>As someone who builds a lot of Slack demos and educational resources, I\u2019m always looking for ways to reduce boilerplate and free up time to focus on creative problem solving. AI has been helpful in small ways before, but it never <i>really<\/i> understood Slack app development.<\/p>\n\n\n\n<p>Here\u2019s what that usually looked like:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>I had to manually scaffold everything.<\/li>\n\n\n\n<li>AI didn\u2019t understand Slack SDKs or best practices.<\/li>\n\n\n\n<li>Every deviation from a sample broke the previous formatting.<\/li>\n\n\n\n<li>Outdated info meant I spent more time correcting than coding.<\/li>\n<\/ul>\n\n\n\n<p>So this time, I wanted to test something new: <b>What if I gave AI the right context from the start?<\/b><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">The experiment: Building a Slack app with the Slack Platform MCP Server<\/h3>\n\n\n\n<p>For this experiment, I connected Cursor to our <b>internal Slack Platform MCP server<\/b> (MCP = Model Context Protocol). Think of it as a behind-the-scenes knowledge layer that understands how Slack apps actually work.<\/p>\n\n\n\n<p>When I typed in the prompt to create a basic Slack app, instead of wrestling with outdated information, Cursor immediately suggested using <b>Bolt for JavaScript<\/b> and provided me with a working set of steps to get and use Slack tokens. It didn\u2019t just suggest the SDK; it scaffolded a fully functional app in minutes, complete with an app manifest and token setup.<\/p>\n\n\n\n<p>The app was basic, but it worked. And it worked fast.<\/p>\n\n\n\n<p>When I intentionally created a few terminal errors, the AI acted like a true pair programmer, providing helpful debugging tips instead of just generic error messages. This was a game-changer. Within a few minutes, I had a functioning Pomodoro timer deployed to my workspace, a process that used to take hours of boilerplate setup and documentation-scouring.<\/p>\n\n\n\n<p>This wasn\u2019t just about speed; it was about the experience. The friction of getting started, the biggest hurdle for new and experienced developers alike, was completely gone. I was building, testing, and seeing real-time results almost instantly. And yes, it was a lot of fun.<\/p>\n\n\n\n<p>And here\u2019s the best part: <b>we\u2019re making the MCP server open source soon<\/b>, so any developer building on Slack can benefit from this same power boost.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Key learnings from the experience<\/h3>\n\n\n\n<p>While the MCP server provided a huge boost, it wasn&#8217;t a magic wand. I still had to lead the development process, but it was way closer to a seamless experience than anything I\u2019ve tried before. Here\u2019s what I learned along the way:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><b>Small prompts > Big asks<\/b><b><br><\/b>Full feature requests overwhelmed the AI agent. I found that smaller, incremental prompts\u2014like &#8220;add a button to start the timer&#8221; or &#8220;create a slash command to pause the timer&#8221;\u2014worked best. Break things down.<\/li>\n\n\n\n<li><b>Structure matters<\/b><b><br><\/b>Bullet points and numbered tasks were easier for Cursor to follow than conversational text.<\/li>\n\n\n\n<li><b>Use Cursor\u2019s agent mode for polishing<\/b><b><br><\/b>Once functionality was mostly there, Cursor&#8217;s Agent mode was incredibly useful for refining the code, cleaning it up, and ensuring consistency.<\/li>\n\n\n\n<li><b>Human input is essential<\/b><b><br><\/b>Edge cases and critical architectural decisions were still on me. You have to constantly test the code and guide the AI closely.<\/li>\n<\/ul>\n\n\n\n<p>Ultimately, it felt less like outsourcing a coding task and more like <b>pair programming<\/b> with a super fast, highly knowledgeable navigator.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What this means for you<\/h3>\n\n\n\n<p>When the MCP server becomes publicly available, you will be able to:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Give AI code assistants like Cursor richer Slack-specific context.<\/li>\n\n\n\n<li>Bootstrap new apps with real, working Slack patterns and best practices.<\/li>\n\n\n\n<li>Focus more on solving unique user problems and less on tedious setup processes.<\/li>\n<\/ul>\n\n\n\n<p>If you\u2019ve struggled with \u201cwhere do I even start?\u201d, this is going to change your game.<\/p>\n\n\n\n<p>We\u2019re incredibly excited for the MCP server launch, and we know you will be too! But if you\u2019re eager to get a head start on building with AI-powered Slack apps right now, I invite you to test the waters with this <a href=\"https:\/\/tools.slack.dev\/bolt-js\/tutorials\/code-assistant\/\">amazing tutorial<\/a> to experience the magic for yourself.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">TL;DR<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>I used <b>Cursor + Slack Platform MCP server<\/b> to build a Pomodoro app for Slack.<\/li>\n\n\n\n<li>The MCP server added much-needed Slack context, making AI code suggestions <i>actually useful<\/i>.<\/li>\n\n\n\n<li>We\u2019re open-sourcing the MCP server soon so all developers can try this.<\/li>\n\n\n\n<li>The MCP server reduces friction, helps you move faster, and unlocks new ways to experiment.<\/li>\n<\/ul>\n\n\n\n<p>Stay tuned for the MCP server launch\u2014and if you try vibe coding, let us know what you build at technewsletter@slack-corp.com. \u2728<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A lightweight experiment in building Slack apps faster (and why it\u2019s about to get a lot easier for everyone). If you\u2019ve ever tried using AI to code a Slack app, you probably hit some roadblocks: t&#8230;<\/p>\n","protected":false},"author":3,"featured_media":5038,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[{"name":"Uncategorized","slug":"uncategorized","link":"https:\/\/slack.dev\/category\/uncategorized\/"}],"tags":[],"class_list":["post-5032","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized"],"featured_image":{"full":"https:\/\/d34u8crftukxnk.cloudfront.net\/slack.dev\/local\/MCP_server_experiment.png","large":"https:\/\/d34u8crftukxnk.cloudfront.net\/slack.dev\/local\/MCP_server_experiment.png?w=1024","medium":"https:\/\/d34u8crftukxnk.cloudfront.net\/slack.dev\/local\/MCP_server_experiment.png?w=300","thumbnail":"https:\/\/d34u8crftukxnk.cloudfront.net\/slack.dev\/local\/MCP_server_experiment.png?w=150&h=150&crop=1","alt":""},"authorship":[{"name":"Maria Jose Hernandez","title":"Senior Developer Advocate @ Slack","avatar":"https:\/\/d34u8crftukxnk.cloudfront.net\/slack.dev\/prod\/66897454d0886d3f2afed4b352fb4f64413d2d6698313ed815997dce79a0778b-1.png"}],"reading_time":5,"acf":{"authorship":{"author_type":"wordpress","wordpress_authors":[5088],"guest_authors":""}},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Vibe coding with Cursor and the Slack platform MCP server | Slack Developers<\/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:\/\/slack.dev\/slack-platform-mcp-server-experience\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Vibe coding with Cursor and the Slack platform MCP server | Slack Developers\" \/>\n<meta property=\"og:description\" content=\"A lightweight experiment in building Slack apps faster (and why it\u2019s about to get a lot easier for everyone). If you\u2019ve ever tried using AI to code a Slack app, you probably hit some roadblocks: t...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/slack.dev\/slack-platform-mcp-server-experience\/\" \/>\n<meta property=\"og:site_name\" content=\"Slack Developers\" \/>\n<meta property=\"og:image\" content=\"https:\/\/d34u8crftukxnk.cloudfront.net\/slack.dev\/local\/MCP_server_experiment.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1998\" \/>\n\t<meta property=\"og:image:height\" content=\"1129\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Maria Jose Hernandez | Sr Manager Developer Advocacy @ Slack\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@SlackAPI\" \/>\n<meta name=\"twitter:site\" content=\"@SlackAPI\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Maria Jose Hernandez | Sr Manager Developer Advocacy @ Slack\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/slack.dev\\\/slack-platform-mcp-server-experience\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/slack.dev\\\/slack-platform-mcp-server-experience\\\/\"},\"author\":{\"name\":\"Maria Jose Hernandez | Sr Manager Developer Advocacy @ Slack\",\"@id\":\"https:\\\/\\\/slack.dev\\\/#\\\/schema\\\/person\\\/bfbf7e29321f24608fd814e4bca2726b\"},\"headline\":\"Vibe coding with Cursor and the Slack platform MCP server\",\"datePublished\":\"2025-08-06T21:34:45+00:00\",\"dateModified\":\"2026-04-15T04:01:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/slack.dev\\\/slack-platform-mcp-server-experience\\\/\"},\"wordCount\":1007,\"publisher\":{\"@id\":\"https:\\\/\\\/slack.dev\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/slack.dev\\\/slack-platform-mcp-server-experience\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/d34u8crftukxnk.cloudfront.net\\\/slack.dev\\\/local\\\/MCP_server_experiment.png\",\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/slack.dev\\\/slack-platform-mcp-server-experience\\\/\",\"url\":\"https:\\\/\\\/slack.dev\\\/slack-platform-mcp-server-experience\\\/\",\"name\":\"Vibe coding with Cursor and the Slack platform MCP server | Slack Developers\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/slack.dev\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/slack.dev\\\/slack-platform-mcp-server-experience\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/slack.dev\\\/slack-platform-mcp-server-experience\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/d34u8crftukxnk.cloudfront.net\\\/slack.dev\\\/local\\\/MCP_server_experiment.png\",\"datePublished\":\"2025-08-06T21:34:45+00:00\",\"dateModified\":\"2026-04-15T04:01:03+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/slack.dev\\\/slack-platform-mcp-server-experience\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/slack.dev\\\/slack-platform-mcp-server-experience\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/slack.dev\\\/slack-platform-mcp-server-experience\\\/#primaryimage\",\"url\":\"https:\\\/\\\/d34u8crftukxnk.cloudfront.net\\\/slack.dev\\\/local\\\/MCP_server_experiment.png\",\"contentUrl\":\"https:\\\/\\\/d34u8crftukxnk.cloudfront.net\\\/slack.dev\\\/local\\\/MCP_server_experiment.png\",\"width\":1998,\"height\":1129},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/slack.dev\\\/slack-platform-mcp-server-experience\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/slack.dev\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Vibe coding with Cursor and the Slack platform MCP server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/slack.dev\\\/#website\",\"url\":\"https:\\\/\\\/slack.dev\\\/\",\"name\":\"Slack Developers\",\"description\":\"Your home for all you need in order to build with Slack, the work OS.\\u2028\",\"publisher\":{\"@id\":\"https:\\\/\\\/slack.dev\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/slack.dev\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/slack.dev\\\/#organization\",\"name\":\"Slack Developers\",\"url\":\"https:\\\/\\\/slack.dev\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/slack.dev\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/d34u8crftukxnk.cloudfront.net\\\/slack.dev\\\/local\\\/Logo-3.svg\",\"contentUrl\":\"https:\\\/\\\/d34u8crftukxnk.cloudfront.net\\\/slack.dev\\\/local\\\/Logo-3.svg\",\"width\":176,\"height\":48,\"caption\":\"Slack Developers\"},\"image\":{\"@id\":\"https:\\\/\\\/slack.dev\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/SlackAPI\",\"https:\\\/\\\/bsky.app\\\/profile\\\/slack.dev\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/tiny-spec-inc\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/slack.dev\\\/#\\\/schema\\\/person\\\/bfbf7e29321f24608fd814e4bca2726b\",\"name\":\"Maria Jose Hernandez | Sr Manager Developer Advocacy @ Slack\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/66897454d0886d3f2afed4b352fb4f64413d2d6698313ed815997dce79a0778b?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/66897454d0886d3f2afed4b352fb4f64413d2d6698313ed815997dce79a0778b?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/66897454d0886d3f2afed4b352fb4f64413d2d6698313ed815997dce79a0778b?s=96&d=mm&r=g\",\"caption\":\"Maria Jose Hernandez | Sr Manager Developer Advocacy @ Slack\"},\"url\":\"https:\\\/\\\/slack.dev\\\/author\\\/mjslack-2-2-2-2-2-2\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Vibe coding with Cursor and the Slack platform MCP server | Slack Developers","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:\/\/slack.dev\/slack-platform-mcp-server-experience\/","og_locale":"en_US","og_type":"article","og_title":"Vibe coding with Cursor and the Slack platform MCP server | Slack Developers","og_description":"A lightweight experiment in building Slack apps faster (and why it\u2019s about to get a lot easier for everyone). If you\u2019ve ever tried using AI to code a Slack app, you probably hit some roadblocks: t...","og_url":"https:\/\/slack.dev\/slack-platform-mcp-server-experience\/","og_site_name":"Slack Developers","og_image":[{"width":1998,"height":1129,"url":"https:\/\/d34u8crftukxnk.cloudfront.net\/slack.dev\/local\/MCP_server_experiment.png","type":"image\/png"}],"author":"Maria Jose Hernandez | Sr Manager Developer Advocacy @ Slack","twitter_card":"summary_large_image","twitter_creator":"@SlackAPI","twitter_site":"@SlackAPI","twitter_misc":{"Written by":"Maria Jose Hernandez | Sr Manager Developer Advocacy @ Slack","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/slack.dev\/slack-platform-mcp-server-experience\/#article","isPartOf":{"@id":"https:\/\/slack.dev\/slack-platform-mcp-server-experience\/"},"author":{"name":"Maria Jose Hernandez | Sr Manager Developer Advocacy @ Slack","@id":"https:\/\/slack.dev\/#\/schema\/person\/bfbf7e29321f24608fd814e4bca2726b"},"headline":"Vibe coding with Cursor and the Slack platform MCP server","datePublished":"2025-08-06T21:34:45+00:00","dateModified":"2026-04-15T04:01:03+00:00","mainEntityOfPage":{"@id":"https:\/\/slack.dev\/slack-platform-mcp-server-experience\/"},"wordCount":1007,"publisher":{"@id":"https:\/\/slack.dev\/#organization"},"image":{"@id":"https:\/\/slack.dev\/slack-platform-mcp-server-experience\/#primaryimage"},"thumbnailUrl":"https:\/\/d34u8crftukxnk.cloudfront.net\/slack.dev\/local\/MCP_server_experiment.png","inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/slack.dev\/slack-platform-mcp-server-experience\/","url":"https:\/\/slack.dev\/slack-platform-mcp-server-experience\/","name":"Vibe coding with Cursor and the Slack platform MCP server | Slack Developers","isPartOf":{"@id":"https:\/\/slack.dev\/#website"},"primaryImageOfPage":{"@id":"https:\/\/slack.dev\/slack-platform-mcp-server-experience\/#primaryimage"},"image":{"@id":"https:\/\/slack.dev\/slack-platform-mcp-server-experience\/#primaryimage"},"thumbnailUrl":"https:\/\/d34u8crftukxnk.cloudfront.net\/slack.dev\/local\/MCP_server_experiment.png","datePublished":"2025-08-06T21:34:45+00:00","dateModified":"2026-04-15T04:01:03+00:00","breadcrumb":{"@id":"https:\/\/slack.dev\/slack-platform-mcp-server-experience\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/slack.dev\/slack-platform-mcp-server-experience\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/slack.dev\/slack-platform-mcp-server-experience\/#primaryimage","url":"https:\/\/d34u8crftukxnk.cloudfront.net\/slack.dev\/local\/MCP_server_experiment.png","contentUrl":"https:\/\/d34u8crftukxnk.cloudfront.net\/slack.dev\/local\/MCP_server_experiment.png","width":1998,"height":1129},{"@type":"BreadcrumbList","@id":"https:\/\/slack.dev\/slack-platform-mcp-server-experience\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/slack.dev\/"},{"@type":"ListItem","position":2,"name":"Vibe coding with Cursor and the Slack platform MCP server"}]},{"@type":"WebSite","@id":"https:\/\/slack.dev\/#website","url":"https:\/\/slack.dev\/","name":"Slack Developers","description":"Your home for all you need in order to build with Slack, the work OS.\u2028","publisher":{"@id":"https:\/\/slack.dev\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/slack.dev\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/slack.dev\/#organization","name":"Slack Developers","url":"https:\/\/slack.dev\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/slack.dev\/#\/schema\/logo\/image\/","url":"https:\/\/d34u8crftukxnk.cloudfront.net\/slack.dev\/local\/Logo-3.svg","contentUrl":"https:\/\/d34u8crftukxnk.cloudfront.net\/slack.dev\/local\/Logo-3.svg","width":176,"height":48,"caption":"Slack Developers"},"image":{"@id":"https:\/\/slack.dev\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/SlackAPI","https:\/\/bsky.app\/profile\/slack.dev","https:\/\/www.linkedin.com\/company\/tiny-spec-inc\/"]},{"@type":"Person","@id":"https:\/\/slack.dev\/#\/schema\/person\/bfbf7e29321f24608fd814e4bca2726b","name":"Maria Jose Hernandez | Sr Manager Developer Advocacy @ Slack","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/66897454d0886d3f2afed4b352fb4f64413d2d6698313ed815997dce79a0778b?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/66897454d0886d3f2afed4b352fb4f64413d2d6698313ed815997dce79a0778b?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/66897454d0886d3f2afed4b352fb4f64413d2d6698313ed815997dce79a0778b?s=96&d=mm&r=g","caption":"Maria Jose Hernandez | Sr Manager Developer Advocacy @ Slack"},"url":"https:\/\/slack.dev\/author\/mjslack-2-2-2-2-2-2\/"}]}},"jetpack_featured_media_url":"https:\/\/d34u8crftukxnk.cloudfront.net\/slack.dev\/local\/MCP_server_experiment.png","_links":{"self":[{"href":"https:\/\/slack.dev\/wp-json\/wp\/v2\/posts\/5032","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/slack.dev\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/slack.dev\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/slack.dev\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/slack.dev\/wp-json\/wp\/v2\/comments?post=5032"}],"version-history":[{"count":3,"href":"https:\/\/slack.dev\/wp-json\/wp\/v2\/posts\/5032\/revisions"}],"predecessor-version":[{"id":9102,"href":"https:\/\/slack.dev\/wp-json\/wp\/v2\/posts\/5032\/revisions\/9102"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/slack.dev\/wp-json\/wp\/v2\/media\/5038"}],"wp:attachment":[{"href":"https:\/\/slack.dev\/wp-json\/wp\/v2\/media?parent=5032"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/slack.dev\/wp-json\/wp\/v2\/categories?post=5032"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/slack.dev\/wp-json\/wp\/v2\/tags?post=5032"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}