{"id":26,"date":"2026-07-22T20:09:18","date_gmt":"2026-07-22T20:09:18","guid":{"rendered":"https:\/\/neurapent.wasmer.app\/?p=26"},"modified":"2026-07-22T20:09:49","modified_gmt":"2026-07-22T20:09:49","slug":"mcp-servers-are-the-new-attack-surface","status":"publish","type":"post","link":"https:\/\/neurapent.wasmer.app\/mcp-servers-are-the-new-attack-surface\/","title":{"rendered":"MCP Servers Are the New Attack Surface"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\"><em>Why connecting LLMs to your local environment creates silent remote code execution (RCE) vectors, and how to validate agentic risk.<\/em><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The adoption of the&nbsp;<strong>Model Context Protocol (MCP)<\/strong>&nbsp;has changed developer workflows. Promoted by Anthropic, MCP serves as an open standard enabling large language models (LLMs) to connect directly to local and remote data sources, developer tools, and file systems.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">With platforms like Cursor, Claude Desktop, and GitHub integrations exposing local MCP servers to read codebases and run terminal commands, productivity has surged.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">But from a security perspective, we have just introduced a massive, unauthenticated network interface directly to our workstations.&nbsp;<strong>MCP servers are the new enterprise attack surface<\/strong>, and traditional security testing is completely blind to it.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Here is what the shift to MCP means for penetration testing, and why securing agentic systems requires an agentic approach.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Anatomy of an MCP Vulnerability<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">To understand the security risk, look at the architecture of a standard MCP setup.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">An LLM client (such as Claude) connects to an MCP server (such as a local database connector or filesystem tool) via JSON-RPC. The LLM acts as the orchestrator, deciding when and how to call the server&#8217;s tools based on user instructions.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https:\/\/neurapent.wasmer.app\/wp-content\/uploads\/2026\/07\/ChatGPT-Image-Jul-23-2026-01_02_24-AM-1024x683.png\" alt=\"MCP Attack Flow\" class=\"wp-image-29\" srcset=\"https:\/\/neurapent.wasmer.app\/wp-content\/uploads\/2026\/07\/ChatGPT-Image-Jul-23-2026-01_02_24-AM-1024x683.png 1024w, https:\/\/neurapent.wasmer.app\/wp-content\/uploads\/2026\/07\/ChatGPT-Image-Jul-23-2026-01_02_24-AM-300x200.png 300w, https:\/\/neurapent.wasmer.app\/wp-content\/uploads\/2026\/07\/ChatGPT-Image-Jul-23-2026-01_02_24-AM-768x512.png 768w, https:\/\/neurapent.wasmer.app\/wp-content\/uploads\/2026\/07\/ChatGPT-Image-Jul-23-2026-01_02_24-AM.png 1536w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">This setup introduces two major vulnerability vectors:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1. Indirect Prompt Injection to Tool Execution<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">An attacker does not need direct access to your MCP server. If your local agent reads an untrusted resource\u2014like a pull request, an external API response, or a webpage containing a malicious payload\u2014that payload can hijack the LLM client.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Once hijacked, the LLM will follow the instructions embedded in the payload, calling your local MCP server to execute commands, write malicious files, or leak sensitive keys.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Permissive Tool Design (Remote Code Execution)<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Many open-source MCP servers are built for convenience, exposing high-risk functions such as&nbsp;<code>run_command<\/code>&nbsp;or&nbsp;<code>write_file<\/code>&nbsp;without strict parameter validation. If an LLM client is manipulated into passing unsanitized input to these tools, it results in direct&nbsp;<strong>Remote Code Execution (RCE)<\/strong>&nbsp;on the host machine.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Public MCP security incidents, including exploits demonstrating how malicious Markdown renders in IDE editors to trigger silent background script execution, show that these threats are already active.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why Legacy Scanners Fail to Detect MCP Flaws<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Traditional vulnerability scanners (like Nessus or Qualys) are built to scan version signatures and check known CVE databases.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">They are completely blind to MCP vulnerabilities because:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>No Signature Match<\/strong>: The vulnerability is not in the software version itself; it resides in the logical permissions of the exposed tools.<\/li>\n\n\n\n<li><strong>No Port Exposure<\/strong>: Local MCP servers often run over standard stdin\/stdout pipes or local sockets that external port scanners cannot see.<\/li>\n\n\n\n<li><strong>Dynamic Context<\/strong>: The exploit requires a multi-step semantic interaction (hijacking the LLM via prompt injection to trigger a tool call) which static code scanners cannot replicate.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">The Solution: Agentic Pentesting for Agentic System<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">You cannot test a dynamic, reasoning-based system using static, version-based tools. Protecting architectures that use MCP requires&nbsp;<strong>agentic pentesting<\/strong>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Agentic pentesting (such as the verification engine built into&nbsp;<strong>NeuraPent<\/strong>) mimics the actual logic of an adversary targeting these pipelines. Instead of scanning for outdated packages, autonomous validation agents:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Identify active integrations and tool-calling endpoints.<\/li>\n\n\n\n<li>Attempt safe semantic validation tests (testing if input sanitizers prevent command parameter injection).<\/li>\n\n\n\n<li>Verify if security perimeters block callback command channels when tools are abused.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">By using autonomous validation agents to test your perimeter, NeuraPent uncovers logical execution flaws and chains security gaps, delivering verified findings in hours, not weeks.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Want to secure your perimeter against modern AI and agentic attack surfaces? Learn how NeuraPent automates validation on our&nbsp;<a href=\"https:\/\/www.neurapent.com\/solutions\">Solutions Page<\/a>&nbsp;or request a perimeter audit via our&nbsp;<a href=\"https:\/\/www.neurapent.com\/contact\">Contact Page<\/a>.<\/em><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Why connecting LLMs to your local environment creates silent remote code execution (RCE) vectors, and how to validate agentic risk. The adoption of the&nbsp;Model&#8230;<\/p>\n","protected":false},"author":1,"featured_media":28,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6],"tags":[13,10,12,7,8,9,11],"class_list":["post-26","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-security-validation","tag-agentic-pentesting","tag-ai-security","tag-autonomous-validation","tag-mcp-security","tag-model-context-protocol","tag-prompt-injection","tag-rce-vulnerabilities"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>MCP Servers Are the New Attack Surface - NeuraPent Blog<\/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:\/\/neurapent.wasmer.app\/mcp-servers-are-the-new-attack-surface\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"MCP Servers Are the New Attack Surface - NeuraPent Blog\" \/>\n<meta property=\"og:description\" content=\"Why connecting LLMs to your local environment creates silent remote code execution (RCE) vectors, and how to validate agentic risk. The adoption of the&nbsp;Model...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/neurapent.wasmer.app\/mcp-servers-are-the-new-attack-surface\/\" \/>\n<meta property=\"og:site_name\" content=\"NeuraPent Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-07-22T20:09:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-22T20:09:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/neurapent.wasmer.app\/wp-content\/uploads\/2026\/07\/ChatGPT-Image-Jul-23-2026-12_54_50-AM.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1672\" \/>\n\t<meta property=\"og:image:height\" content=\"941\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"neurapent\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"neurapent\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/neurapent.wasmer.app\\\/mcp-servers-are-the-new-attack-surface\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/neurapent.wasmer.app\\\/mcp-servers-are-the-new-attack-surface\\\/\"},\"author\":{\"name\":\"neurapent\",\"@id\":\"https:\\\/\\\/neurapent.wasmer.app\\\/#\\\/schema\\\/person\\\/4a96c9ae6ba64a6305ceaa096ff025bf\"},\"headline\":\"MCP Servers Are the New Attack Surface\",\"datePublished\":\"2026-07-22T20:09:18+00:00\",\"dateModified\":\"2026-07-22T20:09:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/neurapent.wasmer.app\\\/mcp-servers-are-the-new-attack-surface\\\/\"},\"wordCount\":623,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/neurapent.wasmer.app\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/neurapent.wasmer.app\\\/mcp-servers-are-the-new-attack-surface\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/neurapent.wasmer.app\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/ChatGPT-Image-Jul-23-2026-12_54_50-AM.png\",\"keywords\":[\"agentic-pentesting\",\"ai-security\",\"autonomous-validation\",\"mcp-security\",\"model-context-protocol\",\"prompt-injection\",\"rce-vulnerabilities\"],\"articleSection\":[\"security-validation\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/neurapent.wasmer.app\\\/mcp-servers-are-the-new-attack-surface\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/neurapent.wasmer.app\\\/mcp-servers-are-the-new-attack-surface\\\/\",\"url\":\"https:\\\/\\\/neurapent.wasmer.app\\\/mcp-servers-are-the-new-attack-surface\\\/\",\"name\":\"MCP Servers Are the New Attack Surface - NeuraPent Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/neurapent.wasmer.app\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/neurapent.wasmer.app\\\/mcp-servers-are-the-new-attack-surface\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/neurapent.wasmer.app\\\/mcp-servers-are-the-new-attack-surface\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/neurapent.wasmer.app\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/ChatGPT-Image-Jul-23-2026-12_54_50-AM.png\",\"datePublished\":\"2026-07-22T20:09:18+00:00\",\"dateModified\":\"2026-07-22T20:09:49+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/neurapent.wasmer.app\\\/mcp-servers-are-the-new-attack-surface\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/neurapent.wasmer.app\\\/mcp-servers-are-the-new-attack-surface\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/neurapent.wasmer.app\\\/mcp-servers-are-the-new-attack-surface\\\/#primaryimage\",\"url\":\"https:\\\/\\\/neurapent.wasmer.app\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/ChatGPT-Image-Jul-23-2026-12_54_50-AM.png\",\"contentUrl\":\"https:\\\/\\\/neurapent.wasmer.app\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/ChatGPT-Image-Jul-23-2026-12_54_50-AM.png\",\"width\":1672,\"height\":941},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/neurapent.wasmer.app\\\/mcp-servers-are-the-new-attack-surface\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/neurapent.wasmer.app\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"MCP Servers Are the New Attack Surface\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/neurapent.wasmer.app\\\/#website\",\"url\":\"https:\\\/\\\/neurapent.wasmer.app\\\/\",\"name\":\"NeuraPent Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/neurapent.wasmer.app\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/neurapent.wasmer.app\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/neurapent.wasmer.app\\\/#organization\",\"name\":\"NeuraPent Blog\",\"url\":\"https:\\\/\\\/neurapent.wasmer.app\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/neurapent.wasmer.app\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/neurapent.wasmer.app\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/NeuraPent_icon.png\",\"contentUrl\":\"https:\\\/\\\/neurapent.wasmer.app\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/NeuraPent_icon.png\",\"width\":1018,\"height\":461,\"caption\":\"NeuraPent Blog\"},\"image\":{\"@id\":\"https:\\\/\\\/neurapent.wasmer.app\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/company\\\/neurapent\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/neurapent.wasmer.app\\\/#\\\/schema\\\/person\\\/4a96c9ae6ba64a6305ceaa096ff025bf\",\"name\":\"neurapent\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2966e9f58b9de99e8fd05863542ad459648a4a1e94abef56b4bb0adb25dd43ec?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2966e9f58b9de99e8fd05863542ad459648a4a1e94abef56b4bb0adb25dd43ec?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2966e9f58b9de99e8fd05863542ad459648a4a1e94abef56b4bb0adb25dd43ec?s=96&d=mm&r=g\",\"caption\":\"neurapent\"},\"sameAs\":[\"http:\\\/\\\/localhost\"],\"url\":\"https:\\\/\\\/neurapent.wasmer.app\\\/author\\\/neurapent\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"MCP Servers Are the New Attack Surface - NeuraPent Blog","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:\/\/neurapent.wasmer.app\/mcp-servers-are-the-new-attack-surface\/","og_locale":"en_US","og_type":"article","og_title":"MCP Servers Are the New Attack Surface - NeuraPent Blog","og_description":"Why connecting LLMs to your local environment creates silent remote code execution (RCE) vectors, and how to validate agentic risk. The adoption of the&nbsp;Model...","og_url":"https:\/\/neurapent.wasmer.app\/mcp-servers-are-the-new-attack-surface\/","og_site_name":"NeuraPent Blog","article_published_time":"2026-07-22T20:09:18+00:00","article_modified_time":"2026-07-22T20:09:49+00:00","og_image":[{"width":1672,"height":941,"url":"https:\/\/neurapent.wasmer.app\/wp-content\/uploads\/2026\/07\/ChatGPT-Image-Jul-23-2026-12_54_50-AM.png","type":"image\/png"}],"author":"neurapent","twitter_card":"summary_large_image","twitter_misc":{"Written by":"neurapent","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/neurapent.wasmer.app\/mcp-servers-are-the-new-attack-surface\/#article","isPartOf":{"@id":"https:\/\/neurapent.wasmer.app\/mcp-servers-are-the-new-attack-surface\/"},"author":{"name":"neurapent","@id":"https:\/\/neurapent.wasmer.app\/#\/schema\/person\/4a96c9ae6ba64a6305ceaa096ff025bf"},"headline":"MCP Servers Are the New Attack Surface","datePublished":"2026-07-22T20:09:18+00:00","dateModified":"2026-07-22T20:09:49+00:00","mainEntityOfPage":{"@id":"https:\/\/neurapent.wasmer.app\/mcp-servers-are-the-new-attack-surface\/"},"wordCount":623,"commentCount":0,"publisher":{"@id":"https:\/\/neurapent.wasmer.app\/#organization"},"image":{"@id":"https:\/\/neurapent.wasmer.app\/mcp-servers-are-the-new-attack-surface\/#primaryimage"},"thumbnailUrl":"https:\/\/neurapent.wasmer.app\/wp-content\/uploads\/2026\/07\/ChatGPT-Image-Jul-23-2026-12_54_50-AM.png","keywords":["agentic-pentesting","ai-security","autonomous-validation","mcp-security","model-context-protocol","prompt-injection","rce-vulnerabilities"],"articleSection":["security-validation"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/neurapent.wasmer.app\/mcp-servers-are-the-new-attack-surface\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/neurapent.wasmer.app\/mcp-servers-are-the-new-attack-surface\/","url":"https:\/\/neurapent.wasmer.app\/mcp-servers-are-the-new-attack-surface\/","name":"MCP Servers Are the New Attack Surface - NeuraPent Blog","isPartOf":{"@id":"https:\/\/neurapent.wasmer.app\/#website"},"primaryImageOfPage":{"@id":"https:\/\/neurapent.wasmer.app\/mcp-servers-are-the-new-attack-surface\/#primaryimage"},"image":{"@id":"https:\/\/neurapent.wasmer.app\/mcp-servers-are-the-new-attack-surface\/#primaryimage"},"thumbnailUrl":"https:\/\/neurapent.wasmer.app\/wp-content\/uploads\/2026\/07\/ChatGPT-Image-Jul-23-2026-12_54_50-AM.png","datePublished":"2026-07-22T20:09:18+00:00","dateModified":"2026-07-22T20:09:49+00:00","breadcrumb":{"@id":"https:\/\/neurapent.wasmer.app\/mcp-servers-are-the-new-attack-surface\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/neurapent.wasmer.app\/mcp-servers-are-the-new-attack-surface\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/neurapent.wasmer.app\/mcp-servers-are-the-new-attack-surface\/#primaryimage","url":"https:\/\/neurapent.wasmer.app\/wp-content\/uploads\/2026\/07\/ChatGPT-Image-Jul-23-2026-12_54_50-AM.png","contentUrl":"https:\/\/neurapent.wasmer.app\/wp-content\/uploads\/2026\/07\/ChatGPT-Image-Jul-23-2026-12_54_50-AM.png","width":1672,"height":941},{"@type":"BreadcrumbList","@id":"https:\/\/neurapent.wasmer.app\/mcp-servers-are-the-new-attack-surface\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/neurapent.wasmer.app\/"},{"@type":"ListItem","position":2,"name":"MCP Servers Are the New Attack Surface"}]},{"@type":"WebSite","@id":"https:\/\/neurapent.wasmer.app\/#website","url":"https:\/\/neurapent.wasmer.app\/","name":"NeuraPent Blog","description":"","publisher":{"@id":"https:\/\/neurapent.wasmer.app\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/neurapent.wasmer.app\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/neurapent.wasmer.app\/#organization","name":"NeuraPent Blog","url":"https:\/\/neurapent.wasmer.app\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/neurapent.wasmer.app\/#\/schema\/logo\/image\/","url":"https:\/\/neurapent.wasmer.app\/wp-content\/uploads\/2026\/07\/NeuraPent_icon.png","contentUrl":"https:\/\/neurapent.wasmer.app\/wp-content\/uploads\/2026\/07\/NeuraPent_icon.png","width":1018,"height":461,"caption":"NeuraPent Blog"},"image":{"@id":"https:\/\/neurapent.wasmer.app\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/neurapent\/"]},{"@type":"Person","@id":"https:\/\/neurapent.wasmer.app\/#\/schema\/person\/4a96c9ae6ba64a6305ceaa096ff025bf","name":"neurapent","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/2966e9f58b9de99e8fd05863542ad459648a4a1e94abef56b4bb0adb25dd43ec?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/2966e9f58b9de99e8fd05863542ad459648a4a1e94abef56b4bb0adb25dd43ec?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2966e9f58b9de99e8fd05863542ad459648a4a1e94abef56b4bb0adb25dd43ec?s=96&d=mm&r=g","caption":"neurapent"},"sameAs":["http:\/\/localhost"],"url":"https:\/\/neurapent.wasmer.app\/author\/neurapent\/"}]}},"_links":{"self":[{"href":"https:\/\/neurapent.wasmer.app\/wp-json\/wp\/v2\/posts\/26","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/neurapent.wasmer.app\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/neurapent.wasmer.app\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/neurapent.wasmer.app\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/neurapent.wasmer.app\/wp-json\/wp\/v2\/comments?post=26"}],"version-history":[{"count":0,"href":"https:\/\/neurapent.wasmer.app\/wp-json\/wp\/v2\/posts\/26\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/neurapent.wasmer.app\/wp-json\/wp\/v2\/media\/28"}],"wp:attachment":[{"href":"https:\/\/neurapent.wasmer.app\/wp-json\/wp\/v2\/media?parent=26"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/neurapent.wasmer.app\/wp-json\/wp\/v2\/categories?post=26"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/neurapent.wasmer.app\/wp-json\/wp\/v2\/tags?post=26"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}