{"id":311,"date":"2026-08-07T20:06:35","date_gmt":"2026-08-07T14:36:35","guid":{"rendered":"https:\/\/blogs.reskilll.com\/build-your-own-mcp-server-30-minutes-python-typescript-tutorial\/"},"modified":"2026-08-07T20:28:25","modified_gmt":"2026-08-07T14:58:25","slug":"build-your-own-mcp-server-30-minutes-python-typescript-tutorial","status":"publish","type":"post","link":"https:\/\/blogs.reskilll.com\/build-your-own-mcp-server-30-minutes-python-typescript-tutorial\/","title":{"rendered":"Build Your Own MCP Server in 30 Minutes: Python &#038; TypeScript Tutorial"},"content":{"rendered":"<p><strong>An MCP server is just a program that exposes functions AI can call.<\/strong> If you can write an API endpoint, you can build an MCP server. Here&#8217;s both Python and TypeScript, from zero to working in 30 minutes.<\/p>\n<h2>What We&#8217;re Building<\/h2>\n<p>A simple MCP server with two tools:<\/p>\n<ol>\n<li><code>search_hackathons<\/code> &#8211; searches a list of hackathons by keyword<\/li>\n<li><code>get_hackathon_details<\/code> &#8211; returns details for a specific hackathon<\/li>\n<\/ol>\n<p>After building this, your AI can say: &#8220;Find AI hackathons happening this month&#8221; and get real results.<\/p>\n<h2>TypeScript Version<\/h2>\n<h3>Step 1: Setup<\/h3>\n<pre><code>mkdir my-mcp-server && cd my-mcp-server\nnpm init -y\nnpm install @modelcontextprotocol\/sdk zod<\/code><\/pre>\n<h3>Step 2: Create server (index.ts)<\/h3>\n<pre><code>import { McpServer } from \"@modelcontextprotocol\/sdk\/server\/mcp.js\";\nimport { StdioServerTransport } from \"@modelcontextprotocol\/sdk\/server\/stdio.js\";\nimport { z } from \"zod\";\n\nconst server = new McpServer({ name: \"hackathon-search\", version: \"1.0.0\" });\n\n\/\/ Sample data (replace with your database)\nconst hackathons = [\n  { name: \"Build with AI\", theme: \"ai\", date: \"2026-08-30\", url: \"https:\/\/buildwithai.reskilll.com\" },\n  { name: \"Health-a-thon\", theme: \"healthcare\", date: \"2026-09-28\", url: \"https:\/\/healthathon.reskilll.com\" },\n  { name: \"TechQuest\", theme: \"mobile\", date: \"2026-08-16\", url: \"https:\/\/techquest.reskilll.com\" },\n];\n\n\/\/ Tool 1: Search\nserver.tool(\"search_hackathons\", { query: z.string() }, async ({ query }) => {\n  const results = hackathons.filter(h =>\n    h.name.toLowerCase().includes(query.toLowerCase()) ||\n    h.theme.toLowerCase().includes(query.toLowerCase())\n  );\n  return { content: [{ type: \"text\", text: JSON.stringify(results, null, 2) }] };\n});\n\n\/\/ Tool 2: Get details\nserver.tool(\"get_hackathon_details\", { name: z.string() }, async ({ name }) => {\n  const hack = hackathons.find(h => h.name.toLowerCase() === name.toLowerCase());\n  if (!hack) return { content: [{ type: \"text\", text: \"Hackathon not found\" }] };\n  return { content: [{ type: \"text\", text: JSON.stringify(hack, null, 2) }] };\n});\n\n\/\/ Start\nconst transport = new StdioServerTransport();\nawait server.connect(transport);<\/code><\/pre>\n<h3>Step 3: Connect to Claude<\/h3>\n<pre><code>\/\/ In claude_desktop_config.json\n{\n  \"mcpServers\": {\n    \"hackathons\": {\n      \"command\": \"npx\",\n      \"args\": [\"tsx\", \"\/path\/to\/my-mcp-server\/index.ts\"]\n    }\n  }\n}<\/code><\/pre>\n<h2>Python Version<\/h2>\n<pre><code># server.py\nfrom mcp.server.fastmcp import FastMCP\n\nmcp = FastMCP(\"hackathon-search\")\n\nhackathons = [\n    {\"name\": \"Build with AI\", \"theme\": \"ai\", \"date\": \"2026-08-30\"},\n    {\"name\": \"Health-a-thon\", \"theme\": \"healthcare\", \"date\": \"2026-09-28\"},\n    {\"name\": \"TechQuest\", \"theme\": \"mobile\", \"date\": \"2026-08-16\"},\n]\n\n@mcp.tool()\ndef search_hackathons(query: str) -> str:\n    \"\"\"Search hackathons by keyword\"\"\"\n    results = [h for h in hackathons if query.lower() in h[\"name\"].lower() or query.lower() in h[\"theme\"]]\n    return str(results)\n\n@mcp.tool()\ndef get_hackathon_details(name: str) -> str:\n    \"\"\"Get details of a specific hackathon\"\"\"\n    hack = next((h for h in hackathons if h[\"name\"].lower() == name.lower()), None)\n    return str(hack) if hack else \"Not found\"\n\nmcp.run()<\/code><\/pre>\n<h2>Test It<\/h2>\n<p>Restart Claude Desktop. Ask: &#8220;Search for AI hackathons&#8221;. Claude calls your <code>search_hackathons<\/code> tool and returns the results from your data.<\/p>\n<h2>Next Steps<\/h2>\n<ul>\n<li>Replace sample data with a real database query<\/li>\n<li>Add authentication (API keys, OAuth)<\/li>\n<li>Add more tools (create, update, delete)<\/li>\n<li>Publish to npm\/PyPI for others to use<\/li>\n<\/ul>\n<p>Build something cool with MCP? <a href=\"https:\/\/reskilll.com\/allhacks\/c\/ai\">Show it at a hackathon<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Create a custom MCP server from scratch. Your AI will be able to call your functions, query your data, and interact with your systems. Works with Claude, Cursor, and any MCP client.<\/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-311","post","type-post","status-publish","format-standard","hentry","category-hackathons"],"yoast_meta":{"focuskw":"build own mcp server","metadesc":"Create a custom MCP server from scratch. Your AI will be able to call your functions, query your data, and interact with your systems. Works with Claude...","title":"Build Your Own MCP Server in 30 Minutes: Python &#038; Ty... | Reskilll Blog"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Build Your Own MCP Server in 30 Minutes: Python &#038; Ty... | Reskilll Blog<\/title>\n<meta name=\"description\" content=\"Create a custom MCP server from scratch. Your AI will be able to call your functions, query your data, and interact with your systems. Works with Claude...\" \/>\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\/build-your-own-mcp-server-30-minutes-python-typescript-tutorial\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Build Your Own MCP Server in 30 Minutes: Python &#038; Ty... | Reskilll Blog\" \/>\n<meta property=\"og:description\" content=\"Create a custom MCP server from scratch. Your AI will be able to call your functions, query your data, and interact with your systems. Works with Claude...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blogs.reskilll.com\/build-your-own-mcp-server-30-minutes-python-typescript-tutorial\/\" \/>\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:35+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\\\/build-your-own-mcp-server-30-minutes-python-typescript-tutorial\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blogs.reskilll.com\\\/build-your-own-mcp-server-30-minutes-python-typescript-tutorial\\\/\"},\"author\":{\"name\":\"Reskilll Team\",\"@id\":\"https:\\\/\\\/blogs.reskilll.com\\\/#\\\/schema\\\/person\\\/04cc3689f9eeb0b8fbd64b35743eb8e3\"},\"headline\":\"Build Your Own MCP Server in 30 Minutes: Python &#038; TypeScript Tutorial\",\"datePublished\":\"2026-08-07T14:36:35+00:00\",\"dateModified\":\"2026-08-07T14:58:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/blogs.reskilll.com\\\/build-your-own-mcp-server-30-minutes-python-typescript-tutorial\\\/\"},\"wordCount\":166,\"publisher\":{\"@id\":\"https:\\\/\\\/blogs.reskilll.com\\\/#organization\"},\"articleSection\":[\"Hackathons\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/blogs.reskilll.com\\\/build-your-own-mcp-server-30-minutes-python-typescript-tutorial\\\/\",\"url\":\"https:\\\/\\\/blogs.reskilll.com\\\/build-your-own-mcp-server-30-minutes-python-typescript-tutorial\\\/\",\"name\":\"Build Your Own MCP Server in 30 Minutes: Python &#038; Ty... | Reskilll Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blogs.reskilll.com\\\/#website\"},\"datePublished\":\"2026-08-07T14:36:35+00:00\",\"dateModified\":\"2026-08-07T14:58:25+00:00\",\"description\":\"Create a custom MCP server from scratch. Your AI will be able to call your functions, query your data, and interact with your systems. Works with Claude...\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/blogs.reskilll.com\\\/build-your-own-mcp-server-30-minutes-python-typescript-tutorial\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/blogs.reskilll.com\\\/build-your-own-mcp-server-30-minutes-python-typescript-tutorial\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/blogs.reskilll.com\\\/build-your-own-mcp-server-30-minutes-python-typescript-tutorial\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/blogs.reskilll.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Build Your Own MCP Server in 30 Minutes: Python &#038; TypeScript Tutorial\"}]},{\"@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":"Build Your Own MCP Server in 30 Minutes: Python &#038; Ty... | Reskilll Blog","description":"Create a custom MCP server from scratch. Your AI will be able to call your functions, query your data, and interact with your systems. Works with Claude...","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\/build-your-own-mcp-server-30-minutes-python-typescript-tutorial\/","og_locale":"en_US","og_type":"article","og_title":"Build Your Own MCP Server in 30 Minutes: Python &#038; Ty... | Reskilll Blog","og_description":"Create a custom MCP server from scratch. Your AI will be able to call your functions, query your data, and interact with your systems. Works with Claude...","og_url":"https:\/\/blogs.reskilll.com\/build-your-own-mcp-server-30-minutes-python-typescript-tutorial\/","og_site_name":"Reskilll Blogs","article_publisher":"https:\/\/www.facebook.com\/reskilllofficial\/","article_published_time":"2026-08-07T14:36:35+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\/build-your-own-mcp-server-30-minutes-python-typescript-tutorial\/#article","isPartOf":{"@id":"https:\/\/blogs.reskilll.com\/build-your-own-mcp-server-30-minutes-python-typescript-tutorial\/"},"author":{"name":"Reskilll Team","@id":"https:\/\/blogs.reskilll.com\/#\/schema\/person\/04cc3689f9eeb0b8fbd64b35743eb8e3"},"headline":"Build Your Own MCP Server in 30 Minutes: Python &#038; TypeScript Tutorial","datePublished":"2026-08-07T14:36:35+00:00","dateModified":"2026-08-07T14:58:25+00:00","mainEntityOfPage":{"@id":"https:\/\/blogs.reskilll.com\/build-your-own-mcp-server-30-minutes-python-typescript-tutorial\/"},"wordCount":166,"publisher":{"@id":"https:\/\/blogs.reskilll.com\/#organization"},"articleSection":["Hackathons"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/blogs.reskilll.com\/build-your-own-mcp-server-30-minutes-python-typescript-tutorial\/","url":"https:\/\/blogs.reskilll.com\/build-your-own-mcp-server-30-minutes-python-typescript-tutorial\/","name":"Build Your Own MCP Server in 30 Minutes: Python &#038; Ty... | Reskilll Blog","isPartOf":{"@id":"https:\/\/blogs.reskilll.com\/#website"},"datePublished":"2026-08-07T14:36:35+00:00","dateModified":"2026-08-07T14:58:25+00:00","description":"Create a custom MCP server from scratch. Your AI will be able to call your functions, query your data, and interact with your systems. Works with Claude...","breadcrumb":{"@id":"https:\/\/blogs.reskilll.com\/build-your-own-mcp-server-30-minutes-python-typescript-tutorial\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blogs.reskilll.com\/build-your-own-mcp-server-30-minutes-python-typescript-tutorial\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/blogs.reskilll.com\/build-your-own-mcp-server-30-minutes-python-typescript-tutorial\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/blogs.reskilll.com\/"},{"@type":"ListItem","position":2,"name":"Build Your Own MCP Server in 30 Minutes: Python &#038; TypeScript Tutorial"}]},{"@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\/311","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=311"}],"version-history":[{"count":1,"href":"https:\/\/blogs.reskilll.com\/wp-json\/wp\/v2\/posts\/311\/revisions"}],"predecessor-version":[{"id":376,"href":"https:\/\/blogs.reskilll.com\/wp-json\/wp\/v2\/posts\/311\/revisions\/376"}],"wp:attachment":[{"href":"https:\/\/blogs.reskilll.com\/wp-json\/wp\/v2\/media?parent=311"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blogs.reskilll.com\/wp-json\/wp\/v2\/categories?post=311"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blogs.reskilll.com\/wp-json\/wp\/v2\/tags?post=311"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}