{"id":"7debf86e-1c22-4381-9e11-dd29f9501874","shortId":"nY8jQp","kind":"skill","title":"Mcp Create Adaptive Cards","tagline":"Awesome Copilot skill by Github","description":"````prompt\n---\nmode: 'agent'\ntools: ['changes', 'search/codebase', 'edit/editFiles', 'problems']\ndescription: 'Add Adaptive Card response templates to MCP-based API plugins for visual data presentation in Microsoft 365 Copilot'\nmodel: 'gpt-4.1'\ntags: [mcp, adaptive-cards, m365-copilot, api-plugin, response-templates]\n---\n\n# Create Adaptive Cards for MCP Plugins\n\nAdd Adaptive Card response templates to MCP-based API plugins to enhance how data is presented visually in Microsoft 365 Copilot.\n\n## Adaptive Card Types\n\n### Static Response Templates\nUse when API always returns items of the same type and format doesn't change often.\n\nDefine in `response_semantics.static_template` in ai-plugin.json:\n\n```json\n{\n  \"functions\": [\n    {\n      \"name\": \"GetBudgets\",\n      \"description\": \"Returns budget details including name and available funds\",\n      \"capabilities\": {\n        \"response_semantics\": {\n          \"data_path\": \"$\",\n          \"properties\": {\n            \"title\": \"$.name\",\n            \"subtitle\": \"$.availableFunds\"\n          },\n          \"static_template\": {\n            \"type\": \"AdaptiveCard\",\n            \"$schema\": \"http://adaptivecards.io/schemas/adaptive-card.json\",\n            \"version\": \"1.5\",\n            \"body\": [\n              {\n                \"type\": \"Container\",\n                \"$data\": \"${$root}\",\n                \"items\": [\n                  {\n                    \"type\": \"TextBlock\",\n                    \"text\": \"Name: ${if(name, name, 'N/A')}\",\n                    \"wrap\": true\n                  },\n                  {\n                    \"type\": \"TextBlock\",\n                    \"text\": \"Available funds: ${if(availableFunds, formatNumber(availableFunds, 2), 'N/A')}\",\n                    \"wrap\": true\n                  }\n                ]\n              }\n            ]\n          }\n        }\n      }\n    }\n  ]\n}\n```\n\n### Dynamic Response Templates\nUse when API returns multiple types and each item needs a different template.\n\n**ai-plugin.json configuration:**\n```json\n{\n  \"name\": \"GetTransactions\",\n  \"description\": \"Returns transaction details with dynamic templates\",\n  \"capabilities\": {\n    \"response_semantics\": {\n      \"data_path\": \"$.transactions\",\n      \"properties\": {\n        \"template_selector\": \"$.displayTemplate\"\n      }\n    }\n  }\n}\n```\n\n**API Response with Embedded Templates:**\n```json\n{\n  \"transactions\": [\n    {\n      \"budgetName\": \"Fourth Coffee lobby renovation\",\n      \"amount\": -2000,\n      \"description\": \"Property survey for permit application\",\n      \"expenseCategory\": \"permits\",\n      \"displayTemplate\": \"$.templates.debit\"\n    },\n    {\n      \"budgetName\": \"Fourth Coffee lobby renovation\",\n      \"amount\": 5000,\n      \"description\": \"Additional funds to cover cost overruns\",\n      \"expenseCategory\": null,\n      \"displayTemplate\": \"$.templates.credit\"\n    }\n  ],\n  \"templates\": {\n    \"debit\": {\n      \"type\": \"AdaptiveCard\",\n      \"version\": \"1.5\",\n      \"body\": [\n        {\n          \"type\": \"TextBlock\",\n          \"size\": \"medium\",\n          \"weight\": \"bolder\",\n          \"color\": \"attention\",\n          \"text\": \"Debit\"\n        },\n        {\n          \"type\": \"FactSet\",\n          \"facts\": [\n            {\n              \"title\": \"Budget\",\n              \"value\": \"${budgetName}\"\n            },\n            {\n              \"title\": \"Amount\",\n              \"value\": \"${formatNumber(amount, 2)}\"\n            },\n            {\n              \"title\": \"Category\",\n              \"value\": \"${if(expenseCategory, expenseCategory, 'N/A')}\"\n            },\n            {\n              \"title\": \"Description\",\n              \"value\": \"${if(description, description, 'N/A')}\"\n            }\n          ]\n        }\n      ],\n      \"$schema\": \"http://adaptivecards.io/schemas/adaptive-card.json\"\n    },\n    \"credit\": {\n      \"type\": \"AdaptiveCard\",\n      \"version\": \"1.5\",\n      \"body\": [\n        {\n          \"type\": \"TextBlock\",\n          \"size\": \"medium\",\n          \"weight\": \"bolder\",\n          \"color\": \"good\",\n          \"text\": \"Credit\"\n        },\n        {\n          \"type\": \"FactSet\",\n          \"facts\": [\n            {\n              \"title\": \"Budget\",\n              \"value\": \"${budgetName}\"\n            },\n            {\n              \"title\": \"Amount\",\n              \"value\": \"${formatNumber(amount, 2)}\"\n            },\n            {\n              \"title\": \"Description\",\n              \"value\": \"${if(description, description, 'N/A')}\"\n            }\n          ]\n        }\n      ],\n      \"$schema\": \"http://adaptivecards.io/schemas/adaptive-card.json\"\n    }\n  }\n}\n```\n\n### Combined Static and Dynamic Templates\nUse static template as default when item doesn't have template_selector or when value doesn't resolve.\n\n```json\n{\n  \"capabilities\": {\n    \"response_semantics\": {\n      \"data_path\": \"$.items\",\n      \"properties\": {\n        \"title\": \"$.name\",\n        \"template_selector\": \"$.templateId\"\n      },\n      \"static_template\": {\n        \"type\": \"AdaptiveCard\",\n        \"version\": \"1.5\",\n        \"body\": [\n          {\n            \"type\": \"TextBlock\",\n            \"text\": \"Default: ${name}\",\n            \"wrap\": true\n          }\n        ]\n      }\n    }\n  }\n}\n```\n\n## Response Semantics Properties\n\n### data_path\nJSONPath query indicating where data resides in API response:\n```json\n\"data_path\": \"$\"           // Root of response\n\"data_path\": \"$.results\"   // In results property\n\"data_path\": \"$.data.items\"// Nested path\n```\n\n### properties\nMap response fields for Copilot citations:\n```json\n\"properties\": {\n  \"title\": \"$.name\",            // Citation title\n  \"subtitle\": \"$.description\",  // Citation subtitle\n  \"url\": \"$.link\"               // Citation link\n}\n```\n\n### template_selector\nProperty on each item indicating which template to use:\n```json\n\"template_selector\": \"$.displayTemplate\"\n```\n\n## Adaptive Card Template Language\n\n### Conditional Rendering\n```json\n{\n  \"type\": \"TextBlock\",\n  \"text\": \"${if(field, field, 'N/A')}\"  // Show field or 'N/A'\n}\n```\n\n### Number Formatting\n```json\n{\n  \"type\": \"TextBlock\",\n  \"text\": \"${formatNumber(amount, 2)}\"  // Two decimal places\n}\n```\n\n### Data Binding\n```json\n{\n  \"type\": \"Container\",\n  \"$data\": \"${$root}\",  // Break to root context\n  \"items\": [ ... ]\n}\n```\n\n### Conditional Display\n```json\n{\n  \"type\": \"Image\",\n  \"url\": \"${imageUrl}\",\n  \"$when\": \"${imageUrl != null}\"  // Only show if imageUrl exists\n}\n```\n\n## Card Elements\n\n### TextBlock\n```json\n{\n  \"type\": \"TextBlock\",\n  \"text\": \"Text content\",\n  \"size\": \"medium\",      // small, default, medium, large, extraLarge\n  \"weight\": \"bolder\",    // lighter, default, bolder\n  \"color\": \"attention\",  // default, dark, light, accent, good, warning, attention\n  \"wrap\": true\n}\n```\n\n### FactSet\n```json\n{\n  \"type\": \"FactSet\",\n  \"facts\": [\n    {\n      \"title\": \"Label\",\n      \"value\": \"Value\"\n    }\n  ]\n}\n```\n\n### Image\n```json\n{\n  \"type\": \"Image\",\n  \"url\": \"https://example.com/image.png\",\n  \"size\": \"medium\",  // auto, stretch, small, medium, large\n  \"style\": \"default\" // default, person\n}\n```\n\n### Container\n```json\n{\n  \"type\": \"Container\",\n  \"$data\": \"${items}\",  // Iterate over array\n  \"items\": [\n    {\n      \"type\": \"TextBlock\",\n      \"text\": \"${name}\"\n    }\n  ]\n}\n```\n\n### ColumnSet\n```json\n{\n  \"type\": \"ColumnSet\",\n  \"columns\": [\n    {\n      \"type\": \"Column\",\n      \"width\": \"auto\",\n      \"items\": [ ... ]\n    },\n    {\n      \"type\": \"Column\",\n      \"width\": \"stretch\",\n      \"items\": [ ... ]\n    }\n  ]\n}\n```\n\n### Actions\n```json\n{\n  \"type\": \"Action.OpenUrl\",\n  \"title\": \"View Details\",\n  \"url\": \"https://example.com/item/${id}\"\n}\n```\n\n## Responsive Design Best Practices\n\n### Single-Column Layouts\n- Use single columns for narrow viewports\n- Avoid multi-column layouts when possible\n- Ensure cards work at minimum viewport width\n\n### Flexible Widths\n- Don't assign fixed widths to elements\n- Use \"auto\" or \"stretch\" for width properties\n- Allow elements to resize with viewport\n- Fixed widths OK for icons/avatars only\n\n### Text and Images\n- Avoid placing text and images in same row\n- Exception: Small icons or avatars\n- Use \"wrap\": true for text content\n- Test at various viewport widths\n\n### Test Across Hubs\nValidate cards in:\n- Teams (desktop and mobile)\n- Word\n- PowerPoint\n- Various viewport widths (contract/expand UI)\n\n## Complete Example\n\n**ai-plugin.json:**\n```json\n{\n  \"functions\": [\n    {\n      \"name\": \"SearchProjects\",\n      \"description\": \"Search for projects with status and details\",\n      \"capabilities\": {\n        \"response_semantics\": {\n          \"data_path\": \"$.projects\",\n          \"properties\": {\n            \"title\": \"$.name\",\n            \"subtitle\": \"$.status\",\n            \"url\": \"$.projectUrl\"\n          },\n          \"static_template\": {\n            \"type\": \"AdaptiveCard\",\n            \"$schema\": \"http://adaptivecards.io/schemas/adaptive-card.json\",\n            \"version\": \"1.5\",\n            \"body\": [\n              {\n                \"type\": \"Container\",\n                \"$data\": \"${$root}\",\n                \"items\": [\n                  {\n                    \"type\": \"TextBlock\",\n                    \"size\": \"medium\",\n                    \"weight\": \"bolder\",\n                    \"text\": \"${if(name, name, 'Untitled Project')}\",\n                    \"wrap\": true\n                  },\n                  {\n                    \"type\": \"FactSet\",\n                    \"facts\": [\n                      {\n                        \"title\": \"Status\",\n                        \"value\": \"${status}\"\n                      },\n                      {\n                        \"title\": \"Owner\",\n                        \"value\": \"${if(owner, owner, 'Unassigned')}\"\n                      },\n                      {\n                        \"title\": \"Due Date\",\n                        \"value\": \"${if(dueDate, dueDate, 'Not set')}\"\n                      },\n                      {\n                        \"title\": \"Budget\",\n                        \"value\": \"${if(budget, formatNumber(budget, 2), 'N/A')}\"\n                      }\n                    ]\n                  },\n                  {\n                    \"type\": \"TextBlock\",\n                    \"text\": \"${if(description, description, 'No description')}\",\n                    \"wrap\": true,\n                    \"separator\": true\n                  }\n                ]\n              }\n            ],\n            \"actions\": [\n              {\n                \"type\": \"Action.OpenUrl\",\n                \"title\": \"View Project\",\n                \"url\": \"${projectUrl}\"\n              }\n            ]\n          }\n        }\n      }\n    }\n  ]\n}\n```\n\n## Workflow\n\nAsk the user:\n1. What type of data does the API return?\n2. Are all items the same type (static) or different types (dynamic)?\n3. What fields should appear in the card?\n4. Should there be actions (e.g., \"View Details\")?\n5. Are there multiple states or categories requiring different templates?\n\nThen generate:\n- Appropriate response_semantics configuration\n- Static template, dynamic templates, or both\n- Proper data binding with conditional rendering\n- Responsive single-column layout\n- Test scenarios for validation\n\n## Resources\n\n- [Adaptive Card Designer](https://adaptivecards.microsoft.com/designer) - Visual design tool\n- [Adaptive Card Schema](https://adaptivecards.io/schemas/adaptive-card.json) - Full schema reference\n- [Template Language](https://learn.microsoft.com/en-us/adaptive-cards/templating/language) - Binding syntax guide\n- [JSONPath](https://www.rfc-editor.org/rfc/rfc9535) - Path query syntax\n\n## Common Patterns\n\n### List with Images\n```json\n{\n  \"type\": \"Container\",\n  \"$data\": \"${items}\",\n  \"items\": [\n    {\n      \"type\": \"ColumnSet\",\n      \"columns\": [\n        {\n          \"type\": \"Column\",\n          \"width\": \"auto\",\n          \"items\": [\n            {\n              \"type\": \"Image\",\n              \"url\": \"${thumbnailUrl}\",\n              \"size\": \"small\",\n              \"$when\": \"${thumbnailUrl != null}\"\n            }\n          ]\n        },\n        {\n          \"type\": \"Column\",\n          \"width\": \"stretch\",\n          \"items\": [\n            {\n              \"type\": \"TextBlock\",\n              \"text\": \"${title}\",\n              \"weight\": \"bolder\",\n              \"wrap\": true\n            }\n          ]\n        }\n      ]\n    }\n  ]\n}\n```\n\n### Status Indicators\n```json\n{\n  \"type\": \"TextBlock\",\n  \"text\": \"${status}\",\n  \"color\": \"${if(status == 'Completed', 'good', if(status == 'In Progress', 'attention', 'default'))}\"\n}\n```\n\n### Currency Formatting\n```json\n{\n  \"type\": \"TextBlock\",\n  \"text\": \"$${formatNumber(amount, 2)}\"\n}\n```\n\n````","tags":["mcp","create","adaptive","cards","awesome","copilot","github"],"capabilities":["skill","source-github","category-awesome-copilot"],"categories":["awesome-copilot"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/github/awesome-copilot/mcp-create-adaptive-cards","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"install_from":"skills.sh"}},"qualityScore":"0.300","qualityRationale":"deterministic score 0.30 from registry signals: · indexed on skills.sh · published under github/awesome-copilot","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill:v1","enrichmentVersion":1,"enrichedAt":"2026-04-22T10:40:20.682Z","embedding":null,"createdAt":"2026-04-18T20:26:08.386Z","updatedAt":"2026-04-22T10:40:20.682Z","lastSeenAt":"2026-04-22T10:40:20.682Z","tsv":"'-2000':224 '-4.1':40 '/designer)':910 '/en-us/adaptive-cards/templating/language)':927 '/image.png':563 '/item/$':614 '/rfc/rfc9535)':934 '/schemas/adaptive-card.json':141,300,340,751 '/schemas/adaptive-card.json)':919 '1':830 '1.5':143,258,305,382,753 '2':169,282,329,484,804,839,1005 '3':851 '365':36,81 '4':859 '5':867 '5000':241 'accent':541 'across':700 'action':604,818,863 'action.openurl':607,820 'adapt':3,20,44,56,62,83,458,905,914 'adaptive-card':43 'adaptivecard':137,256,303,380,747 'adaptivecards.io':140,299,339,750,918 'adaptivecards.io/schemas/adaptive-card.json':139,298,338,749 'adaptivecards.io/schemas/adaptive-card.json)':917 'adaptivecards.microsoft.com':909 'adaptivecards.microsoft.com/designer)':908 'add':19,61 'addit':243 'agent':12 'ai-plugin.json':110,189,718 'allow':660 'alway':92 'amount':223,240,278,281,325,328,483,1004 'api':28,50,70,91,178,211,403,837 'api-plugin':49 'appear':855 'applic':230 'appropri':879 'array':583 'ask':827 'assign':648 'attent':267,537,544,995 'auto':566,597,654,955 'avail':122,163 'availablefund':133,166,168 'avatar':687 'avoid':630,675 'awesom':5 'base':27,69 'best':618 'bind':489,891,928 'bodi':144,259,306,383,754 'bolder':265,312,532,535,765,976 'break':495 'budget':117,274,321,798,801,803 'budgetnam':218,235,276,323 'capabl':124,201,365,731 'card':4,21,45,57,63,84,459,515,638,703,858,906,915 'categori':284,873 'category-awesome-copilot' 'chang':14,103 'citat':428,433,437,441 'coffe':220,237 'color':266,313,536,986 'column':593,595,600,622,626,633,898,951,953,967 'columnset':589,592,950 'combin':341 'common':938 'complet':716,989 'condit':462,500,893 'configur':190,882 'contain':146,492,575,578,756,945 'content':523,693 'context':498 'contract/expand':714 'copilot':6,37,48,82,427 'cost':247 'cover':246 'creat':2,55 'credit':301,316 'currenc':997 'dark':539 'data':32,75,127,147,204,368,394,400,406,411,417,488,493,579,734,757,834,890,946 'data.items':419 'date':790 'debit':254,269 'decim':486 'default':350,387,527,534,538,572,573,996 'defin':105 'descript':18,115,194,225,242,291,294,295,331,334,335,436,723,810,811,813 'design':617,907,912 'desktop':706 'detail':118,197,610,730,866 'differ':187,848,875 'display':501 'displaytempl':210,233,251,457 'doesn':101,353,361 'due':789 'duedat':793,794 'dynam':173,199,344,850,885 'e.g':864 'edit/editfiles':16 'element':516,652,661 'embed':214 'enhanc':73 'ensur':637 'exampl':717 'example.com':562,613 'example.com/image.png':561 'example.com/item/$':612 'except':683 'exist':514 'expensecategori':231,249,287,288 'extralarg':530 'fact':272,319,551,776 'factset':271,318,547,550,775 'field':425,469,470,473,853 'fix':649,666 'flexibl':644 'format':100,477,998 'formatnumb':167,280,327,482,802,1003 'fourth':219,236 'full':920 'function':112,720 'fund':123,164,244 'generat':878 'getbudget':114 'gettransact':193 'github':9 'good':314,542,990 'gpt':39 'guid':930 'hub':701 'icon':685 'icons/avatars':670 'id':615 'imag':504,556,559,674,679,942,958 'imageurl':506,508,513 'includ':119 'indic':398,449,980 'item':94,149,184,352,370,448,499,580,584,598,603,759,842,947,948,956,970 'iter':581 'json':111,191,216,364,405,429,454,464,478,490,502,518,548,557,576,590,605,719,943,981,999 'jsonpath':396,931 'label':553 'languag':461,924 'larg':529,570 'layout':623,634,899 'learn.microsoft.com':926 'learn.microsoft.com/en-us/adaptive-cards/templating/language)':925 'light':540 'lighter':533 'link':440,442 'list':940 'lobbi':221,238 'm365':47 'm365-copilot':46 'map':423 'mcp':1,26,42,59,68 'mcp-base':25,67 'medium':263,310,525,528,565,569,763 'microsoft':35,80 'minimum':641 'mobil':708 'mode':11 'model':38 'multi':632 'multi-column':631 'multipl':180,870 'n/a':157,170,289,296,336,471,475,805 'name':113,120,131,153,155,156,192,373,388,432,588,721,739,768,769 'narrow':628 'need':185 'nest':420 'null':250,509,965 'number':476 'often':104 'ok':668 'overrun':248 'owner':782,785,786 'path':128,205,369,395,407,412,418,421,735,935 'pattern':939 'permit':229,232 'person':574 'place':487,676 'plugin':29,51,60,71 'possibl':636 'powerpoint':710 'practic':619 'present':33,77 'problem':17 'progress':994 'project':726,736,771,823 'projecturl':743,825 'prompt':10 'proper':889 'properti':129,207,226,371,393,416,422,430,445,659,737 'queri':397,936 'refer':922 'render':463,894 'renov':222,239 'requir':874 'resid':401 'resiz':663 'resolv':363 'resourc':904 'respons':22,53,64,87,125,174,202,212,366,391,404,410,424,616,732,880,895 'response-templ':52 'response_semantics.static':107 'result':413,415 'return':93,116,179,195,838 'root':148,408,494,497,758 'row':682 'scenario':901 'schema':138,297,337,748,916,921 'search':724 'search/codebase':15 'searchproject':722 'selector':209,357,375,444,456 'semant':126,203,367,392,733,881 'separ':816 'set':796 'show':472,511 'singl':621,625,897 'single-column':620,896 'size':262,309,524,564,762,961 'skill':7 'small':526,568,684,962 'source-github' 'state':871 'static':86,134,342,347,377,744,846,883 'status':728,741,778,780,979,985,988,992 'stretch':567,602,656,969 'style':571 'subtitl':132,435,438,740 'survey':227 'syntax':929,937 'tag':41 'team':705 'templat':23,54,65,88,108,135,175,188,200,208,215,253,345,348,356,374,378,443,451,455,460,745,876,884,886,923 'templateid':376 'templates.credit':252 'templates.debit':234 'test':694,699,900 'text':152,162,268,315,386,467,481,521,522,587,672,677,692,766,808,973,984,1002 'textblock':151,161,261,308,385,466,480,517,520,586,761,807,972,983,1001 'thumbnailurl':960,964 'titl':130,273,277,283,290,320,324,330,372,431,434,552,608,738,777,781,788,797,821,974 'tool':13,913 'transact':196,206,217 'true':159,172,390,546,690,773,815,817,978 'two':485 'type':85,98,136,145,150,160,181,255,260,270,302,307,317,379,384,465,479,491,503,519,549,558,577,585,591,594,599,606,746,755,760,774,806,819,832,845,849,944,949,952,957,966,971,982,1000 'ui':715 'unassign':787 'untitl':770 'url':439,505,560,611,742,824,959 'use':89,176,346,453,624,653,688 'user':829 'valid':702,903 'valu':275,279,285,292,322,326,332,360,554,555,779,783,791,799 'various':696,711 'version':142,257,304,381,752 'view':609,822,865 'viewport':629,642,665,697,712 'visual':31,78,911 'warn':543 'weight':264,311,531,764,975 'width':596,601,643,645,650,658,667,698,713,954,968 'word':709 'work':639 'workflow':826 'wrap':158,171,389,545,689,772,814,977 'www.rfc-editor.org':933 'www.rfc-editor.org/rfc/rfc9535)':932","prices":[{"id":"34c1824d-1646-456c-bf60-2206ace9cf20","listingId":"7debf86e-1c22-4381-9e11-dd29f9501874","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"github","category":"awesome-copilot","install_from":"skills.sh"},"createdAt":"2026-04-18T20:26:08.386Z"}],"sources":[{"listingId":"7debf86e-1c22-4381-9e11-dd29f9501874","source":"github","sourceId":"github/awesome-copilot/mcp-create-adaptive-cards","sourceUrl":"https://github.com/github/awesome-copilot/tree/main/skills/mcp-create-adaptive-cards","isPrimary":false,"firstSeenAt":"2026-04-18T21:50:07.228Z","lastSeenAt":"2026-04-22T06:52:25.090Z"},{"listingId":"7debf86e-1c22-4381-9e11-dd29f9501874","source":"skills_sh","sourceId":"github/awesome-copilot/mcp-create-adaptive-cards","sourceUrl":"https://skills.sh/github/awesome-copilot/mcp-create-adaptive-cards","isPrimary":true,"firstSeenAt":"2026-04-18T20:26:08.386Z","lastSeenAt":"2026-04-22T10:40:20.682Z"}],"details":{"listingId":"7debf86e-1c22-4381-9e11-dd29f9501874","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"github","slug":"mcp-create-adaptive-cards","source":"skills_sh","category":"awesome-copilot","skills_sh_url":"https://skills.sh/github/awesome-copilot/mcp-create-adaptive-cards"},"updatedAt":"2026-04-22T10:40:20.682Z"}}