{"id":4073,"date":"2026-05-15T13:15:59","date_gmt":"2026-05-15T13:15:59","guid":{"rendered":"https:\/\/rssfeedtelegrambot.bnaya.co.il\/index.php\/2026\/05\/15\/custom-mcp-catalogs-and-profiles-advancing-enterprise-mcp-adoption\/"},"modified":"2026-05-15T13:15:59","modified_gmt":"2026-05-15T13:15:59","slug":"custom-mcp-catalogs-and-profiles-advancing-enterprise-mcp-adoption","status":"publish","type":"post","link":"https:\/\/rssfeedtelegrambot.bnaya.co.il\/index.php\/2026\/05\/15\/custom-mcp-catalogs-and-profiles-advancing-enterprise-mcp-adoption\/","title":{"rendered":"Custom MCP Catalogs and Profiles: Advancing Enterprise MCP Adoption"},"content":{"rendered":"<p>We\u2019re excited to announce the general availability of Custom Catalogs and Profiles for managing Model Context Protocol (MCP) servers. These two complementary capabilities fundamentally change how teams package, distribute, and manage AI tooling.\u00a0<\/p>\n<p>Custom MCP Catalogs let organizations curate and distribute approved collections of MCP servers. MCP Profiles enable individual developers to easily build, run, and share their MCP tools and configurations across projects and teams.<\/p>\n<p>In this post, we\u2019ll walk through how to create your own custom catalog \u2013 building on and improving our <a href=\"https:\/\/www.docker.com\/blog\/build-custom-mcp-catalog\/\">previous approach<\/a>. We\u2019ll also introduce <strong>Profiles<\/strong>, a new primitive that lets you define portable, named groupings of MCP servers. Profiles are designed to solve several practical use cases today, while giving us a foundation to expand in the future.<\/p>\n<h2 class=\"wp-block-heading\">Creating custom catalogs with Docker<\/h2>\n<p>As organizations adopt MCP, we consistently hear the same need: teams need a way to curate a trusted list of MCP servers, including internally built servers.<\/p>\n<p>To address these needs, we built <strong>Custom Catalogs<\/strong>. Instead of every team member searching for MCP servers across the open internet, organizations can publish and distribute catalogs that define approved servers. This allows developers to centrally discover and use trusted MCP servers within organizational boundaries.<\/p>\n<p>Custom Catalogs can reference servers from Docker\u2019s MCP Catalog, community sources, and custom MCP servers developed internally, bringing flexibility, control, and trust together in a single experience. We will show you how to do that with a Custom Catalog.\u00a0<\/p>\n<h2 class=\"wp-block-heading\">Step-by-step: Building and sharing a custom MCP catalog\u00a0<\/h2>\n<p>In this example, we will create a Custom Catalog containing servers from the Docker MCP Catalog and an MCP server we created ourselves from the CLI. Then we will show you how to use Docker Desktop to import the catalog.<\/p>\n<p>All the functionality we will show can be exercised through the CLI, while a subset of primarily user-centric features can be exercised through Docker Desktop.<\/p>\n<p>Here, we will use my personal Docker Hub ID <code>roberthouse224<\/code> in the commands, but you should adapt to use your information where appropriate (e.g. pushing an image).<\/p>\n<h3 class=\"wp-block-heading\">Step 1: Creating my custom MCP server and pushing it to Docker Hub<\/h3>\n<p>We built a reference server called roll-dice (<a href=\"https:\/\/github.com\/bobbyhouse\/roll-dice\" rel=\"nofollow noopener\" target=\"_blank\">GitHub Repository<\/a>). It is a regular MCP server that communicates over stdio and can be built as a Docker image. The image has already been built and pushed to <a href=\"https:\/\/hub.docker.com\/r\/roberthouse224\/mcp-dice\" rel=\"nofollow noopener\" target=\"_blank\">Docker Hub<\/a>.<\/p>\n<p>We can create the metadata that describes the server including where the image can be found and save it to a file named mcp-dice.yaml to be used when creating our catalog.<\/p>\n<div class=\"wp-block-syntaxhighlighter-code \">\n<pre class=\"brush: yaml; title: ; notranslate\">\nname: roll-dice\ntitle: Roll Dice\ntype: server\nimage: roberthouse224\/mcp-dice@latest\ndescription: An mcp server that can roll dice\n<\/pre>\n<\/div>\n<h3 class=\"wp-block-heading\">Step 2: Creating a catalog that includes servers from the Docker MCP Catalog alongside a server you have built yourself<\/h3>\n<p>Now we can create a custom catalog containing servers from the Docker MCP Catalog and the MCP server we created ourselves.<\/p>\n<div class=\"wp-block-syntaxhighlighter-code \">\n<pre class=\"brush: yaml; title: ; notranslate\">\ndocker mcp catalog create roberthouse224\/our-catalog \n--title \"Our Catalog\" \n--server catalog:\/\/mcp\/docker-mcp-catalog\/playwright \n--server catalog:\/\/mcp\/docker-mcp-catalog\/github-official \n--server catalog:\/\/mcp\/docker-mcp-catalog\/context7 \n--server catalog:\/\/mcp\/docker-mcp-catalog\/atlassian \n--server catalog:\/\/mcp\/docker-mcp-catalog\/notion \n--server catalog:\/\/mcp\/docker-mcp-catalog\/markitdown \n--server file:\/\/.\/mcp-dice.yaml\n<\/pre>\n<\/div>\n<h3 class=\"wp-block-heading\">Step 3: Verifying the MCP servers in the custom catalog\u00a0<\/h3>\n<p>We can now list our catalogs and see the catalog that we created<br \/><code>docker mcp catalog list<\/code><\/p>\n<p>We can also inspect the contents of the catalog<br \/><code>docker mcp catalog show roberthouse224\/our-catalog --format yaml<\/code><\/p>\n<h4 class=\"wp-block-heading\">Step 4: Share the catalog<\/h4>\n<p>At the moment our custom catalog only lives on our machine. But what we have \u2013 and this is really powerful \u2013 is an immutable OCI artifact containing our trusted MCP servers that can be easily shared.<\/p>\n<p>We can push our catalog to a container registry, in this example we\u2019re using Docker Hub. Now, anyone that has access to your organization\u2019s namespace can access the catalog.<\/p>\n<p><code>docker mcp catalog push roberthouse224\/our-catalog<\/code><\/p>\n<h2 class=\"wp-block-heading\">Using a custom MCP catalog<\/h2>\n<p>Now that our custom catalog has been shared, colleagues can import it from within Docker Desktop (or from the cli using <code>docker mcp catalog pull<\/code>).<\/p>\n<p>Import the catalog from Docker Desktop by selecting \u201cImport catalog,\u201d and then specifying the OCI reference in the dialog.<\/p>\n<div class=\"wp-block-ponyo-image\">\n                <img data-opt-id=42811373  fetchpriority=\"high\" decoding=\"async\" width=\"1907\" height=\"1042\" src=\"https:\/\/www.docker.com\/app\/uploads\/2026\/05\/image5.png\" class=\"fade-in\" alt=\"image5\" title=\"- image5\" \/>\n        <\/div>\n<p><strong>Figure 1: Importing a custom catalog from OCI reference<\/strong><\/p>\n<p>The catalog is now browsable. You can double click into the catalog and see all of the servers contained within it. Notice the custom MCP server that we added named \u201cRoll Dice.\u201d<\/p>\n<div class=\"wp-block-ponyo-image\">\n                <img data-opt-id=1702988239  fetchpriority=\"high\" decoding=\"async\" width=\"1913\" height=\"1043\" src=\"https:\/\/www.docker.com\/app\/uploads\/2026\/05\/image7.png\" class=\"fade-in\" alt=\"image7\" title=\"- image7\" \/>\n        <\/div>\n<p><strong>Figure 2: A custom MCP catalog within the Docker Desktop app, including a newly added \u201cRoll Dice\u201d server.<\/strong><\/p>\n<p>To make this a <em>private<\/em> catalog all you need to do is <a href=\"https:\/\/docs.docker.com\/docker-hub\/repos\/manage\/access\/\" rel=\"nofollow noopener\" target=\"_blank\">manage access to the repository<\/a> the way you always have for container images \u2013 no new infrastructure to manage or systems to learn.<\/p>\n<p>This is exactly what Jim Clark was describing in his post <a href=\"https:\/\/www.docker.com\/blog\/private-mcp-catalogs-oci-composable-enterprise-ai\/\">Private MCP Catalogs and the Path to Composable Enterprise AI<\/a>.<\/p>\n<p>This simple pattern can be extended to support more complex use cases. For example, you might use a private container registry instead of Docker Hub, or connect to a remote MCP server over streamable HTTP you host yourself rather than running a containerized server as shown in the example.<\/p>\n<p>Now that we have a shareable custom catalog of trusted MCP servers we can shift focus to how individuals can effectively leverage MCP servers from the catalog we built in their workflows.<\/p>\n<h2 class=\"wp-block-heading\">Using Profiles to create and share MCP Workflows<\/h2>\n<p>With MCP Profiles, developers can organize workflows efficiently and maintain separate server collections and configurations for different use cases. Profiles can be shared across teams, enabling collaboration on server setups and ensuring consistent configurations for teams working within the same projects or contexts.<\/p>\n<h3 class=\"wp-block-heading\">Switch between Profiles<\/h3>\n<p>At a basic level, a Profile is a named grouping of MCP servers that can be connected to an agent session. This makes it straightforward to define different Profiles for different ways of working.<\/p>\n<p>Now let\u2019s see an example in action.\u00a0<\/p>\n<p>We create a profile named <em>coding <\/em>and another named <em>planning<\/em>. We browse our custom catalog, select the MCP servers that we want (e.g. Playwright, GitHub, and Context7) then select the \u201cAdd to\u201d drop down, and select \u201cNew profile\u201d.<\/p>\n<div class=\"wp-block-ponyo-image\">\n                <img data-opt-id=1502149662  data-opt-src=\"https:\/\/www.docker.com\/app\/uploads\/2026\/05\/image3.png\"  decoding=\"async\" width=\"1915\" height=\"1039\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20100%%20100%%22%20width%3D%22100%%22%20height%3D%22100%%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Crect%20width%3D%22100%%22%20height%3D%22100%%22%20fill%3D%22transparent%22%2F%3E%3C%2Fsvg%3E\" class=\"fade-in\" alt=\"image3\" title=\"- image3\" \/>\n        <\/div>\n<p><strong>Figure 3: Selecting MCP servers to be added to a new profile<\/strong><\/p>\n<p>Give the profile a name, select the client you want to connect to, and select \u201cCreate\u201d.<\/p>\n<div class=\"wp-block-ponyo-image\">\n                <img data-opt-id=1972280950  data-opt-src=\"https:\/\/www.docker.com\/app\/uploads\/2026\/05\/image6.png\"  decoding=\"async\" width=\"1913\" height=\"1041\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20100%%20100%%22%20width%3D%22100%%22%20height%3D%22100%%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Crect%20width%3D%22100%%22%20height%3D%22100%%22%20fill%3D%22transparent%22%2F%3E%3C%2Fsvg%3E\" class=\"fade-in\" alt=\"image6\" title=\"- image6\" \/>\n        <\/div>\n<p><strong>Figure 4: Creating a new MCP profile named coding in Docker Desktop.<\/strong><\/p>\n<p>From the Profiles tab, we can see the profile we just created. Our client is connected and our tools are ready to use.\u00a0<\/p>\n<div class=\"wp-block-ponyo-image\">\n                <img data-opt-id=1565663417  data-opt-src=\"https:\/\/www.docker.com\/app\/uploads\/2026\/05\/image4.png\"  decoding=\"async\" width=\"1904\" height=\"1038\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20100%%20100%%22%20width%3D%22100%%22%20height%3D%22100%%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Crect%20width%3D%22100%%22%20height%3D%22100%%22%20fill%3D%22transparent%22%2F%3E%3C%2Fsvg%3E\" class=\"fade-in\" alt=\"image4\" title=\"- image4\" \/>\n        <\/div>\n<p><strong>Figure 5: Example of a profile that is connected to a client.<\/strong><\/p>\n<p>Next we create a profile named <em>planning<\/em> with servers relevant to planning (e.g. Atlassian, Markitdown, Notion).\u00a0<\/p>\n<p>Navigate back to \u201cour-catalog\u201d (if not already there), select the servers relevant to planning, and select \u201cAdd to\u201d -&gt; \u201cNew profile.\u201d Give the profile a name (e.g. planning). Then select \u201cCreate\u201d to create the planning profile without a client. Specifying the client is optional.<\/p>\n<div class=\"wp-block-ponyo-image\">\n                <img data-opt-id=1492762626  data-opt-src=\"https:\/\/www.docker.com\/app\/uploads\/2026\/05\/image8.png\"  decoding=\"async\" width=\"1909\" height=\"1044\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20100%%20100%%22%20width%3D%22100%%22%20height%3D%22100%%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Crect%20width%3D%22100%%22%20height%3D%22100%%22%20fill%3D%22transparent%22%2F%3E%3C%2Fsvg%3E\" class=\"fade-in\" alt=\"image8\" title=\"- image8\" \/>\n        <\/div>\n<p><strong>Figure 6: Example of creating multiple profiles, including separate profiles for coding and planning\u00a0<\/strong><\/p>\n<p>Now we have two profiles that mirror two modes of working. When we switch to planning mode we only want the tools from our planning profile to be in context. To do that, we can easily reassign our client to the planning profile.<\/p>\n<div class=\"wp-block-ponyo-image\">\n                <img data-opt-id=32716889  data-opt-src=\"https:\/\/www.docker.com\/app\/uploads\/2026\/05\/image9-2.png\"  decoding=\"async\" width=\"1906\" height=\"1040\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20100%%20100%%22%20width%3D%22100%%22%20height%3D%22100%%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Crect%20width%3D%22100%%22%20height%3D%22100%%22%20fill%3D%22transparent%22%2F%3E%3C%2Fsvg%3E\" class=\"fade-in\" alt=\"image9 2\" title=\"- image9 2\" \/>\n        <\/div>\n<p><strong>Figure 7: Reassign Claude Code to the planning profile.<\/strong><\/p>\n<p>If we go back to coding mode, we just reassign our client back to the coding profile. You can have any number of Profiles that mirror your many ways of working and easily switch between them, keeping only the tools you care about in context.<\/p>\n<p>This will work with any agent, not just Claude Code. Profiles provide a truly portable way to manage your MCP server setups and avoid vendor lock-in.<\/p>\n<h3 class=\"wp-block-heading\">Persist configuration<\/h3>\n<p>You can avoid repeatedly configuring MCP servers by using a Profile. Profiles add a persistence layer for MCP server configurations. When an MCP server exposes configurable options, you can define them once in a Profile and reload them as needed, avoiding repeated configuration.<\/p>\n<p>In this example, we are\u00a0specifying which paths Markitdown can access.<\/p>\n<div class=\"wp-block-ponyo-image\">\n                <img data-opt-id=1346042658  data-opt-src=\"https:\/\/www.docker.com\/app\/uploads\/2026\/05\/image1.png\"  decoding=\"async\" width=\"1911\" height=\"1044\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20100%%20100%%22%20width%3D%22100%%22%20height%3D%22100%%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Crect%20width%3D%22100%%22%20height%3D%22100%%22%20fill%3D%22transparent%22%2F%3E%3C%2Fsvg%3E\" class=\"fade-in\" alt=\"image1\" title=\"- image1\" \/>\n        <\/div>\n<p><strong>Figure 8: Using an MCP profile to save server configurations for reuse<\/strong><\/p>\n<p>Context windows can easily fill up when the MCP servers you use export a lot of tools. With Profiles you can specify which tools are enabled, making sure only the tools you need for a specific task are used.<\/p>\n<p>Here we enable the <code>get_me<\/code> tool from the GitHub MCP server and disable all the others. All the other tools will not show up in our agent session or contribute to the context window.<\/p>\n<div class=\"wp-block-ponyo-image\">\n                <img data-opt-id=583174894  data-opt-src=\"https:\/\/www.docker.com\/app\/uploads\/2026\/05\/image2.png\"  decoding=\"async\" width=\"1906\" height=\"1037\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20100%%20100%%22%20width%3D%22100%%22%20height%3D%22100%%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Crect%20width%3D%22100%%22%20height%3D%22100%%22%20fill%3D%22transparent%22%2F%3E%3C%2Fsvg%3E\" class=\"fade-in\" alt=\"image2\" title=\"- image2\" \/>\n        <\/div>\n<p><strong>Figure 9: Optimize your context window by enabling only the tools you need in the MCP profile<\/strong><\/p>\n<p>This model of saved configuration becomes far more powerful for MCP servers you build in-house. By exposing richer configuration options, you can reuse the same server across projects, reconfigure its behavior per context, and achieve more predictable outcomes.<\/p>\n<h3 class=\"wp-block-heading\">Share Profiles<\/h3>\n<p>Identifying MCP servers and configurations that work well for a project doesn\u2019t need to be repeated by every team member. Once you\u2019ve found a setup that works, share it with the rest of the team.<\/p>\n<p>To share a Profile you can push it as an OCI artifact to a container registry just like we did with our custom catalog. Just provide a name for it along with an OCI reference.<\/p>\n<div class=\"wp-block-syntaxhighlighter-code \">\n<pre class=\"brush: yaml; title: ; notranslate\">\n\u279c  ~ docker mcp profile push coding [your-namespace]\/coding\n\n<\/pre>\n<\/div>\n<p>For someone to pull it down, all they have to do is issue the corresponding pull command.<\/p>\n<div class=\"wp-block-syntaxhighlighter-code \">\n<pre class=\"brush: yaml; title: ; notranslate\">\n\u279c  ~ docker mcp profile pull [your-namspace]\/coding\n<\/pre>\n<\/div>\n<p>Although the example above demonstrates sharing Profiles across a team, the concept extends naturally to agents as well. An agent skill could, for instance, reference a Profile and pull in the required MCP servers and their configurations as dependencies.<\/p>\n<h2 class=\"wp-block-heading\">Conclusion and What\u2019s Next\u00a0<\/h2>\n<p>As MCP adoption grows, the challenge isn\u2019t access to tools \u2014 it\u2019s coordination. Teams need a way to standardize what\u2019s trusted and supported without constraining how individuals actually work. Custom Catalogs and Profiles are designed to solve exactly that problem.<\/p>\n<h3 class=\"wp-block-heading\">Custom Catalogs: shared foundation<\/h3>\n<p>Custom Catalogs allow platform and admin teams to define approved MCP servers, bundle internal and public tooling together, and distribute those choices as a single, portable artifact. This creates clarity and consistency while significantly reducing the cost of discovery and evaluation.<\/p>\n<h3 class=\"wp-block-heading\">Profiles: supercharge workflow<\/h3>\n<p>Profiles give individual developers a lightweight way to assemble, configure, and reuse MCP servers for specific contexts like coding, planning, or research. Profiles persist configuration, limit context to what matters, and make effective setups easy to share across teams.<\/p>\n<p>Together, these primitives separate:<\/p>\n<ul class=\"wp-block-list\">\n<li><strong>What an organization recommends<\/strong> (via Custom Catalogs)<\/li>\n<li><strong>How people work day to day<\/strong> (via Profiles)<\/li>\n<\/ul>\n<p>This separation enables a healthy balance. Platform teams can publish \u201cgolden paths\u201d that establish standards and guardrails, while developers retain the freedom to adapt, experiment, and compose profiles that fit their needs.<\/p>\n<p>The result is a system that is <strong>portable, composable, and scalable<\/strong> \u2014 making MCP easier to adopt, safer to manage, and more effective as it grows across an organization.<\/p>\n<h3 class=\"wp-block-heading\">What\u2019s Next?<\/h3>\n<p>Custom Catalogs and Profiles are the foundation for managing MCP at scale, and we\u2019re just getting started. Next, we\u2019re focused on extending these primitives to support stronger governance, better reuse, and more advanced agent workflows:<\/p>\n<ul class=\"wp-block-list\">\n<li>Governance and policy controls to restrict MCP usage to approved Custom Catalogs and trusted server sources<\/li>\n<li>Improved discoverability and sharing for both Catalogs and Profiles, making proven setups easier to find and reuse across teams<\/li>\n<li>Expanded Profile-scoped secrets and configuration, providing a more secure and flexible alternative to project-level <code>mcp.json<\/code> files<\/li>\n<li>Clear best practices for Profiles, including saving dynamic MCP server configurations for reuse and pairing Profiles with emerging workflow optimizations like agent skills<\/li>\n<\/ul>\n<h3 class=\"wp-block-heading\">Getting started with Custom Catalogs and Profiles<\/h3>\n<p>If you have Docker Desktop 4.56 you are already using Catalogs \u2013 our Docker MCP Catalog is now distributed as an OCI artifact and Profiles are supported starting with Docker Desktop 4.63. Try creating your first Profile by exploring the <a href=\"https:\/\/hub.docker.com\/open-desktop?url=https:\/\/open.docker.com\/dashboard\/mcp&amp;_gl\" rel=\"nofollow noopener\" target=\"_blank\">MCP Toolkit in Docker Desktop<\/a>.<\/p>\n<h2 class=\"wp-block-heading\"><strong>Learn more<\/strong><\/h2>\n<ul class=\"wp-block-list\">\n<li>Dive into our documentation on <a href=\"https:\/\/docs.docker.com\/ai\/mcp-catalog-and-toolkit\/catalog\/#custom-catalogs\" rel=\"nofollow noopener\" target=\"_blank\">Custom Catalogs<\/a> and <a href=\"https:\/\/docs.docker.com\/ai\/mcp-catalog-and-toolkit\/profiles\/\" rel=\"nofollow noopener\" target=\"_blank\">Profiles<\/a> to get started quickly.<\/li>\n<li>Explore<a href=\"https:\/\/www.docker.com\/products\/mcp-catalog-and-toolkit\/\"> Docker\u2019s MCP Catalog and Toolkit<\/a> on our website.<\/li>\n<li>Ready to go hands-on? Open<a href=\"https:\/\/hub.docker.com\/open-desktop?url=https:\/\/open.docker.com\/dashboard\/mcp&amp;_gl\" rel=\"nofollow noopener\" target=\"_blank\"> Docker Desktop<\/a> or the CLI and start using MCP to streamline and automate your development workflows.<\/li>\n<\/ul>","protected":false},"excerpt":{"rendered":"<p>We\u2019re excited to announce the general availability of Custom Catalogs and Profiles for managing Model Context Protocol (MCP) servers. These [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":4074,"comment_status":"","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[4],"tags":[],"class_list":["post-4073","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-docker"],"_links":{"self":[{"href":"https:\/\/rssfeedtelegrambot.bnaya.co.il\/index.php\/wp-json\/wp\/v2\/posts\/4073","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/rssfeedtelegrambot.bnaya.co.il\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/rssfeedtelegrambot.bnaya.co.il\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/rssfeedtelegrambot.bnaya.co.il\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/rssfeedtelegrambot.bnaya.co.il\/index.php\/wp-json\/wp\/v2\/comments?post=4073"}],"version-history":[{"count":0,"href":"https:\/\/rssfeedtelegrambot.bnaya.co.il\/index.php\/wp-json\/wp\/v2\/posts\/4073\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/rssfeedtelegrambot.bnaya.co.il\/index.php\/wp-json\/wp\/v2\/media\/4074"}],"wp:attachment":[{"href":"https:\/\/rssfeedtelegrambot.bnaya.co.il\/index.php\/wp-json\/wp\/v2\/media?parent=4073"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/rssfeedtelegrambot.bnaya.co.il\/index.php\/wp-json\/wp\/v2\/categories?post=4073"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/rssfeedtelegrambot.bnaya.co.il\/index.php\/wp-json\/wp\/v2\/tags?post=4073"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}