{"id":310,"date":"2026-08-07T20:06:34","date_gmt":"2026-08-07T14:36:34","guid":{"rendered":"https:\/\/blogs.reskilll.com\/how-to-connect-mcp-claude-cursor-vscode-complete-setup-guide\/"},"modified":"2026-08-07T20:28:25","modified_gmt":"2026-08-07T14:58:25","slug":"how-to-connect-mcp-claude-cursor-vscode-complete-setup-guide","status":"publish","type":"post","link":"https:\/\/blogs.reskilll.com\/how-to-connect-mcp-claude-cursor-vscode-complete-setup-guide\/","title":{"rendered":"How to Connect MCP to Claude, Cursor, and VS Code: Complete Setup Guide"},"content":{"rendered":"<p><strong>Setup takes under 5 minutes per client.<\/strong> Here&#8217;s exactly how to connect MCP servers to the three most popular AI coding tools.<\/p>\n<h2>Prerequisites<\/h2>\n<ul>\n<li>Node.js 18+ installed (check with <code>node -v<\/code>)<\/li>\n<li>Your AI client installed (Claude Desktop, Cursor, or VS Code with Copilot)<\/li>\n<\/ul>\n<h2>Method 1: Claude Desktop<\/h2>\n<h3>Step 1: Find the config file<\/h3>\n<pre><code># macOS\n~\/Library\/Application Support\/Claude\/claude_desktop_config.json\n\n# Windows\n%APPDATA%\/Claude\/claude_desktop_config.json\n\n# Linux\n~\/.config\/claude\/claude_desktop_config.json<\/code><\/pre>\n<h3>Step 2: Add your MCP servers<\/h3>\n<pre><code>{\n  \"mcpServers\": {\n    \"filesystem\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@modelcontextprotocol\/server-filesystem\", \"\/path\/to\/your\/project\"]\n    },\n    \"github\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@modelcontextprotocol\/server-github\"],\n      \"env\": { \"GITHUB_TOKEN\": \"ghp_your_token_here\" }\n    }\n  }\n}<\/code><\/pre>\n<h3>Step 3: Restart Claude Desktop<\/h3>\n<p>Quit and reopen. You&#8217;ll see a hammer icon showing available tools. Ask Claude: &#8220;List my GitHub repositories&#8221; &#8211; it should work.<\/p>\n<h2>Method 2: Cursor IDE<\/h2>\n<h3>Step 1: Open Settings<\/h3>\n<p>Cmd+Shift+P > &#8220;Cursor Settings&#8221; > Features > MCP Servers<\/p>\n<h3>Step 2: Add server config<\/h3>\n<p>Same JSON format as Claude Desktop. Add your servers and save.<\/p>\n<h3>Step 3: Use in Composer<\/h3>\n<p>Open Composer (Cmd+I), and your MCP tools are available. Ask: &#8220;Search my codebase for all TODO comments&#8221; (using filesystem MCP).<\/p>\n<h2>Method 3: VS Code (via Continue or Copilot)<\/h2>\n<h3>With Continue extension:<\/h3>\n<pre><code>\/\/ ~\/.continue\/config.json\n{\n  \"mcpServers\": [\n    {\n      \"name\": \"github\",\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@modelcontextprotocol\/server-github\"],\n      \"env\": { \"GITHUB_TOKEN\": \"ghp_xxx\" }\n    }\n  ]\n}<\/code><\/pre>\n<h2>Method 4: Claude Code (CLI)<\/h2>\n<pre><code># Add globally\nclaude mcp add github --command \"npx -y @modelcontextprotocol\/server-github\"\n\n# Or per-project (.claude\/config.json in your repo)\n{\n  \"mcpServers\": {\n    \"github\": { \"command\": \"npx\", \"args\": [\"-y\", \"@modelcontextprotocol\/server-github\"] }\n  }\n}<\/code><\/pre>\n<h2>Troubleshooting<\/h2>\n<ul>\n<li><strong>&#8220;Tool not found&#8221;<\/strong> &#8211; Restart the client after config changes<\/li>\n<li><strong>&#8220;Permission denied&#8221;<\/strong> &#8211; Check your API token\/key has correct scopes<\/li>\n<li><strong>&#8220;Timeout&#8221;<\/strong> &#8211; The MCP server crashed. Check logs or run the command manually to see errors<\/li>\n<li><strong>&#8220;npx not found&#8221;<\/strong> &#8211; Ensure Node.js is in your PATH<\/li>\n<\/ul>\n<h2>Your First Test<\/h2>\n<p>After setup, try these prompts:<\/p>\n<ul>\n<li>&#8220;What files are in my current directory?&#8221; (filesystem)<\/li>\n<li>&#8220;Show my open GitHub PRs&#8221; (github)<\/li>\n<li>&#8220;What&#8217;s in the users table?&#8221; (database)<\/li>\n<\/ul>\n<p>If these work, MCP is connected. You&#8217;re ready to build.<\/p>\n<p><a href=\"https:\/\/reskilll.com\/allhacks\/c\/ai\">Build MCP-powered apps at AI hackathons on Reskilll<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Step-by-step guide to connecting MCP servers to Claude Desktop, Cursor IDE, and VS Code. From installation to your first working tool call in 5 minutes.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","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-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":"","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-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":"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":""},"mobile":{"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":""}},"footnotes":""},"categories":[3],"tags":[],"class_list":["post-310","post","type-post","status-publish","format-standard","hentry","category-hackathons"],"yoast_meta":{"focuskw":"connect mcp claude cursor","metadesc":"Step-by-step guide to connecting MCP servers to Claude Desktop, Cursor IDE, and VS Code. From installation to your first working tool call in 5 minutes.","title":"How to Connect MCP to Claude, Cursor, and VS Code: Comple... | Reskilll Blog"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Connect MCP to Claude, Cursor, and VS Code: Comple... | Reskilll Blog<\/title>\n<meta name=\"description\" content=\"Step-by-step guide to connecting MCP servers to Claude Desktop, Cursor IDE, and VS Code. From installation to your first working tool call in 5 minutes.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blogs.reskilll.com\/how-to-connect-mcp-claude-cursor-vscode-complete-setup-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Connect MCP to Claude, Cursor, and VS Code: Comple... | Reskilll Blog\" \/>\n<meta property=\"og:description\" content=\"Step-by-step guide to connecting MCP servers to Claude Desktop, Cursor IDE, and VS Code. From installation to your first working tool call in 5 minutes.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blogs.reskilll.com\/how-to-connect-mcp-claude-cursor-vscode-complete-setup-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"Reskilll Blogs\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/reskilllofficial\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-08-07T14:36:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-07T14:58:25+00:00\" \/>\n<meta name=\"author\" content=\"Reskilll Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@Reskilll\" \/>\n<meta name=\"twitter:site\" content=\"@Reskilll\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Reskilll Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/blogs.reskilll.com\\\/how-to-connect-mcp-claude-cursor-vscode-complete-setup-guide\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blogs.reskilll.com\\\/how-to-connect-mcp-claude-cursor-vscode-complete-setup-guide\\\/\"},\"author\":{\"name\":\"Reskilll Team\",\"@id\":\"https:\\\/\\\/blogs.reskilll.com\\\/#\\\/schema\\\/person\\\/04cc3689f9eeb0b8fbd64b35743eb8e3\"},\"headline\":\"How to Connect MCP to Claude, Cursor, and VS Code: Complete Setup Guide\",\"datePublished\":\"2026-08-07T14:36:34+00:00\",\"dateModified\":\"2026-08-07T14:58:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/blogs.reskilll.com\\\/how-to-connect-mcp-claude-cursor-vscode-complete-setup-guide\\\/\"},\"wordCount\":257,\"publisher\":{\"@id\":\"https:\\\/\\\/blogs.reskilll.com\\\/#organization\"},\"articleSection\":[\"Hackathons\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/blogs.reskilll.com\\\/how-to-connect-mcp-claude-cursor-vscode-complete-setup-guide\\\/\",\"url\":\"https:\\\/\\\/blogs.reskilll.com\\\/how-to-connect-mcp-claude-cursor-vscode-complete-setup-guide\\\/\",\"name\":\"How to Connect MCP to Claude, Cursor, and VS Code: Comple... | Reskilll Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blogs.reskilll.com\\\/#website\"},\"datePublished\":\"2026-08-07T14:36:34+00:00\",\"dateModified\":\"2026-08-07T14:58:25+00:00\",\"description\":\"Step-by-step guide to connecting MCP servers to Claude Desktop, Cursor IDE, and VS Code. From installation to your first working tool call in 5 minutes.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/blogs.reskilll.com\\\/how-to-connect-mcp-claude-cursor-vscode-complete-setup-guide\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/blogs.reskilll.com\\\/how-to-connect-mcp-claude-cursor-vscode-complete-setup-guide\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/blogs.reskilll.com\\\/how-to-connect-mcp-claude-cursor-vscode-complete-setup-guide\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/blogs.reskilll.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Connect MCP to Claude, Cursor, and VS Code: Complete Setup Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/blogs.reskilll.com\\\/#website\",\"url\":\"https:\\\/\\\/blogs.reskilll.com\\\/\",\"name\":\"Reskilll Blogs\",\"description\":\"Tech, Hackathons &amp; Innovation\",\"publisher\":{\"@id\":\"https:\\\/\\\/blogs.reskilll.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/blogs.reskilll.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/blogs.reskilll.com\\\/#organization\",\"name\":\"Reskilll\",\"url\":\"https:\\\/\\\/blogs.reskilll.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/blogs.reskilll.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/blogs.reskilll.com\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/reskilll-logo.png\",\"contentUrl\":\"https:\\\/\\\/blogs.reskilll.com\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/reskilll-logo.png\",\"width\":1642,\"height\":374,\"caption\":\"Reskilll\"},\"image\":{\"@id\":\"https:\\\/\\\/blogs.reskilll.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/reskilllofficial\\\/\",\"https:\\\/\\\/x.com\\\/Reskilll\",\"https:\\\/\\\/www.instagram.com\\\/reskilllofficial\\\/\",\"https:\\\/\\\/in.linkedin.com\\\/company\\\/reskilll\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/blogs.reskilll.com\\\/#\\\/schema\\\/person\\\/04cc3689f9eeb0b8fbd64b35743eb8e3\",\"name\":\"Reskilll Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bb0b0d68d9b8776824760bfdda0beb6a23bb14f37a3aa71d75595bcabc4ce233?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bb0b0d68d9b8776824760bfdda0beb6a23bb14f37a3aa71d75595bcabc4ce233?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bb0b0d68d9b8776824760bfdda0beb6a23bb14f37a3aa71d75595bcabc4ce233?s=96&d=mm&r=g\",\"caption\":\"Reskilll Team\"},\"sameAs\":[\"https:\\\/\\\/blogs.reskilll.com\"],\"url\":\"https:\\\/\\\/blogs.reskilll.com\\\/author\\\/reskilll-1asd-admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Connect MCP to Claude, Cursor, and VS Code: Comple... | Reskilll Blog","description":"Step-by-step guide to connecting MCP servers to Claude Desktop, Cursor IDE, and VS Code. From installation to your first working tool call in 5 minutes.","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:\/\/blogs.reskilll.com\/how-to-connect-mcp-claude-cursor-vscode-complete-setup-guide\/","og_locale":"en_US","og_type":"article","og_title":"How to Connect MCP to Claude, Cursor, and VS Code: Comple... | Reskilll Blog","og_description":"Step-by-step guide to connecting MCP servers to Claude Desktop, Cursor IDE, and VS Code. From installation to your first working tool call in 5 minutes.","og_url":"https:\/\/blogs.reskilll.com\/how-to-connect-mcp-claude-cursor-vscode-complete-setup-guide\/","og_site_name":"Reskilll Blogs","article_publisher":"https:\/\/www.facebook.com\/reskilllofficial\/","article_published_time":"2026-08-07T14:36:34+00:00","article_modified_time":"2026-08-07T14:58:25+00:00","author":"Reskilll Team","twitter_card":"summary_large_image","twitter_creator":"@Reskilll","twitter_site":"@Reskilll","twitter_misc":{"Written by":"Reskilll Team","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blogs.reskilll.com\/how-to-connect-mcp-claude-cursor-vscode-complete-setup-guide\/#article","isPartOf":{"@id":"https:\/\/blogs.reskilll.com\/how-to-connect-mcp-claude-cursor-vscode-complete-setup-guide\/"},"author":{"name":"Reskilll Team","@id":"https:\/\/blogs.reskilll.com\/#\/schema\/person\/04cc3689f9eeb0b8fbd64b35743eb8e3"},"headline":"How to Connect MCP to Claude, Cursor, and VS Code: Complete Setup Guide","datePublished":"2026-08-07T14:36:34+00:00","dateModified":"2026-08-07T14:58:25+00:00","mainEntityOfPage":{"@id":"https:\/\/blogs.reskilll.com\/how-to-connect-mcp-claude-cursor-vscode-complete-setup-guide\/"},"wordCount":257,"publisher":{"@id":"https:\/\/blogs.reskilll.com\/#organization"},"articleSection":["Hackathons"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/blogs.reskilll.com\/how-to-connect-mcp-claude-cursor-vscode-complete-setup-guide\/","url":"https:\/\/blogs.reskilll.com\/how-to-connect-mcp-claude-cursor-vscode-complete-setup-guide\/","name":"How to Connect MCP to Claude, Cursor, and VS Code: Comple... | Reskilll Blog","isPartOf":{"@id":"https:\/\/blogs.reskilll.com\/#website"},"datePublished":"2026-08-07T14:36:34+00:00","dateModified":"2026-08-07T14:58:25+00:00","description":"Step-by-step guide to connecting MCP servers to Claude Desktop, Cursor IDE, and VS Code. From installation to your first working tool call in 5 minutes.","breadcrumb":{"@id":"https:\/\/blogs.reskilll.com\/how-to-connect-mcp-claude-cursor-vscode-complete-setup-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blogs.reskilll.com\/how-to-connect-mcp-claude-cursor-vscode-complete-setup-guide\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/blogs.reskilll.com\/how-to-connect-mcp-claude-cursor-vscode-complete-setup-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/blogs.reskilll.com\/"},{"@type":"ListItem","position":2,"name":"How to Connect MCP to Claude, Cursor, and VS Code: Complete Setup Guide"}]},{"@type":"WebSite","@id":"https:\/\/blogs.reskilll.com\/#website","url":"https:\/\/blogs.reskilll.com\/","name":"Reskilll Blogs","description":"Tech, Hackathons &amp; Innovation","publisher":{"@id":"https:\/\/blogs.reskilll.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blogs.reskilll.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/blogs.reskilll.com\/#organization","name":"Reskilll","url":"https:\/\/blogs.reskilll.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blogs.reskilll.com\/#\/schema\/logo\/image\/","url":"https:\/\/blogs.reskilll.com\/wp-content\/uploads\/2026\/04\/reskilll-logo.png","contentUrl":"https:\/\/blogs.reskilll.com\/wp-content\/uploads\/2026\/04\/reskilll-logo.png","width":1642,"height":374,"caption":"Reskilll"},"image":{"@id":"https:\/\/blogs.reskilll.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/reskilllofficial\/","https:\/\/x.com\/Reskilll","https:\/\/www.instagram.com\/reskilllofficial\/","https:\/\/in.linkedin.com\/company\/reskilll"]},{"@type":"Person","@id":"https:\/\/blogs.reskilll.com\/#\/schema\/person\/04cc3689f9eeb0b8fbd64b35743eb8e3","name":"Reskilll Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/bb0b0d68d9b8776824760bfdda0beb6a23bb14f37a3aa71d75595bcabc4ce233?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/bb0b0d68d9b8776824760bfdda0beb6a23bb14f37a3aa71d75595bcabc4ce233?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/bb0b0d68d9b8776824760bfdda0beb6a23bb14f37a3aa71d75595bcabc4ce233?s=96&d=mm&r=g","caption":"Reskilll Team"},"sameAs":["https:\/\/blogs.reskilll.com"],"url":"https:\/\/blogs.reskilll.com\/author\/reskilll-1asd-admin\/"}]}},"_links":{"self":[{"href":"https:\/\/blogs.reskilll.com\/wp-json\/wp\/v2\/posts\/310","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blogs.reskilll.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blogs.reskilll.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blogs.reskilll.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blogs.reskilll.com\/wp-json\/wp\/v2\/comments?post=310"}],"version-history":[{"count":1,"href":"https:\/\/blogs.reskilll.com\/wp-json\/wp\/v2\/posts\/310\/revisions"}],"predecessor-version":[{"id":377,"href":"https:\/\/blogs.reskilll.com\/wp-json\/wp\/v2\/posts\/310\/revisions\/377"}],"wp:attachment":[{"href":"https:\/\/blogs.reskilll.com\/wp-json\/wp\/v2\/media?parent=310"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blogs.reskilll.com\/wp-json\/wp\/v2\/categories?post=310"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blogs.reskilll.com\/wp-json\/wp\/v2\/tags?post=310"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}