{"id":21022,"date":"2026-05-21T09:25:02","date_gmt":"2026-05-21T07:25:02","guid":{"rendered":"https:\/\/inprofit.eu\/sin-categorizar\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/"},"modified":"2026-05-21T09:29:05","modified_gmt":"2026-05-21T07:29:05","slug":"mcp-in-production-how-to-connect-claude-to-your-agency-tools","status":"publish","type":"post","link":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/","title":{"rendered":"MCP in production: how to connect Claude to your agency tools"},"content":{"rendered":"\n<p class=\"wp-block-yoast-seo-estimated-reading-time yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"><svg aria-hidden=\"true\" focusable=\"false\" data-icon=\"clock\" width=\"20\" height=\"20\" fill=\"none\" stroke=\"currentColor\" style=\"display:inline-block;vertical-align:-0.1em\" role=\"img\" viewbox=\"0 0 24 24\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z\"><\/path><\/svg><\/span><span class=\"yoast-reading-time__spacer\" style=\"display:inline-block;width:1em\"><\/span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time: <\/span><span class=\"yoast-reading-time__reading-time\">9<\/span><span class=\"yoast-reading-time__time-unit\"> minutes<\/span><\/p>\n\n<p class=\"post-intro wp-block-paragraph\">If you work in a digital agency and use Claude to produce content, analyze data or automate tasks, you probably have the same problem we had: Claude is powerful, but lives in a bubble. You ask him something about a client&#8217;s SEO performance and he answers with general knowledge, not with that client&#8217;s actual data. <\/p>\n\n<p class=\"wp-block-paragraph\">The solution exists and is called <strong>MCP: Model Context Protocol<\/strong>. It is the protocol that allows Claude to connect directly with your external tools and act on them in real time. At Inprofit we have been using MCP in production for several months with a specific stack: <strong>WordPress REST API, Google Search Console and Google Analytics<\/strong>, all orchestrated from Claude Desktop and Claude Code.  <\/p>\n\n<p class=\"wp-block-paragraph\">This post is the guide that would have saved us weeks of testing. Straight to the point: what MCP is, how it works technically, what problems we encountered in Windows and how we solved them, and what agency flows you can set up from day one. <\/p>\n\n<figure class=\"wp-block-pullquote\"><blockquote><p>MCP is not just another integration. It is the layer that turns Claude into an agent with memory and real access to your technology stack. <\/p><\/blockquote><\/figure>\n\n<h2 class=\"wp-block-heading\" id=\"h-que-es-el-model-context-protocol-mcp-y-por-que-importa-en-2026\">What is the Model Context Protocol (MCP) and why does it matter in 2026?<\/h2>\n\n<p class=\"wp-block-paragraph\">MCP is an open protocol, published by Anthropic in 2024, that standardizes the way language models communicate with external tools. Before MCP, every integration was a patch: prompts that mimicked having data, custom functions, or n8n streams that prepared the context before calling the API. <\/p>\n\n<p class=\"wp-block-paragraph\">With MCP, Claude can connect directly to a server that exposes predefined tools, resources and prompts. From the model, it is as if these capabilities are native. <\/p>\n\n<h3 class=\"wp-block-heading\" id=\"h-los-tres-elementos-de-un-servidor-mcp\">The three elements of an MCP server<\/h3>\n\n<ul class=\"wp-block-list\">\n<li><strong>Tools:<\/strong> functions that Claude can invoke. Example: search for posts in WordPress, get click data in GSC, read GA4 sessions. <\/li>\n\n\n\n<li><strong>Resources:<\/strong> data that Claude can read as context. Example: the content of a local file, the configuration of a project. <\/li>\n\n\n\n<li><strong>Prompts:<\/strong> reusable templates that the server exposes for predefined flows.<\/li>\n<\/ul>\n\n<p class=\"wp-block-paragraph\">The architecture is client-server: <a href=\"https:\/\/inprofit.eu\/en\/marketing-trends\/5-claude-prompts-that-give-you-back-5-hours-a-week\/\" type=\"post\" id=\"20848\" target=\"_blank\" rel=\"noreferrer noopener\">Claude acts as the MCP client<\/a>, and you deploy the servers that connect to your APIs. They can run locally (stdio) or as a remote service (SSE\/HTTP). In agency, the most practical combination is local servers for internal tools and remote servers for cloud services.  <\/p>\n\n<h2 class=\"wp-block-heading\" id=\"h-el-stack-que-usamos-en-produccion-wordpress-gsc-analytics\">The stack we use in production: WordPress + GSC + Analytics<\/h2>\n\n<p class=\"wp-block-paragraph\">Our starting point was clear: we needed Claude to have real access to the three data sources we use on a daily basis on client projects.<\/p>\n\n<h3 class=\"wp-block-heading\" id=\"h-1-wordpress-rest-api-el-servidor-mcp-de-wordpress\">1. WordPress REST API &#8211; the WordPress MCP server<\/h3>\n\n<p class=\"wp-block-paragraph\">There is an <a href=\"https:\/\/inprofit.eu\/en\/automation\/wordpress-and-woocommerce-automation-in-2026\/\" type=\"post\" id=\"21000\" target=\"_blank\" rel=\"noreferrer noopener\">MCP server for WordPress<\/a> that connects via REST API. It allows Claude to read, create and edit posts, pages, categories and Yoast\/RankMath metadata directly. For agencies managing client blogs, this radically changes the flow of content ops.  <\/p>\n\n<p class=\"wp-block-paragraph\">Basic installation (requires Node.js 18+):<\/p>\n\n<pre class=\"wp-block-code\"><code>npm install -g @modelcontextprotocol\/server-wordpress<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Configuration at <code>claude_desktop_config.json<\/code>:<\/p>\n\n<pre class=\"wp-block-code\"><code>{<br>  \"mcpServers\": {<br>    \"wordpress\": {<br>      \"command\": \"C:\\\\Users\\\\jorge\\\\AppData\\\\Roaming\\\\npm\\\\mcp-wordpress.cmd\",<br>      \"args\": &#91;],<br>      \"env\": {<br>        \"WP_URL\": \"https:\/\/tucliente.com\",<br>        \"WP_USER\": \"usuario_api\",<br>        \"WP_APP_PASSWORD\": \"xxxx xxxx xxxx xxxx\"<br>      }<br>    }<br>  }<br>}<br><br><\/code><\/pre>\n\n<h3 class=\"wp-block-heading\" id=\"h-2-google-search-console-el-servidor-mcp-de-gsc\">2. Google Search Console &#8211; the GSC MCP server<\/h3>\n\n<p class=\"wp-block-paragraph\">The Google Search Console MCP server exposes search performance data: queries, pages, clicks, impressions, CTR and average position. With this, Claude can answer questions such as: which pages are losing position this month? which queries have low CTR and should be optimized?  <\/p>\n\n<p class=\"wp-block-paragraph\">Requires creating OAuth2 credentials in Google Cloud Console with Search Console scopes. The initial authentication flow is the only manual step; after that it works with automatic token refresh. <\/p>\n\n<h3 class=\"wp-block-heading\" id=\"h-3-google-analytics-4-el-servidor-mcp-de-ga4\">3. Google Analytics 4 &#8211; the GA4 MCP Server<\/h3>\n\n<p class=\"wp-block-paragraph\">GA4&#8217;s MCP server uses the Google Analytics Data API v1. It allows Claude to query metrics on sessions, users, conversions, bounce rate and custom events. The most valuable agency use case: generate monthly performance reports without manually exporting data.  <\/p>\n\n<h2 class=\"wp-block-heading\" id=\"h-problemas-reales-que-encontramos-y-como-los-resolvimos\">Real problems we encountered (and how we solved them)<\/h2>\n\n<h3 class=\"wp-block-heading\" id=\"h-problema-1-timeouts-de-conexion-mcp-en-windows-con-npx\">Problem 1: MCP connection timeouts on Windows with npx<\/h3>\n\n<p class=\"wp-block-paragraph\">The symptom was that Claude Desktop was showing the MCP servers as &#8220;connecting&#8230;&#8221; indefinitely. The root problem is that <code>npx<\/code> on Windows launches a child process with a startup latency that exceeds the connection timeout of the MCP client. <\/p>\n\n<p class=\"wp-block-paragraph\"><strong>Solution:<\/strong> Install all MCP packages globally with <code>npm install -g<\/code> and use the absolute path to <code>.cmd<\/code> in the field <code>command<\/code>.<\/p>\n\n<h3 class=\"wp-block-heading\" id=\"h-problema-2-autenticacion-oauth-caducada-en-gsc-y-ga4\">Problem 2: OAuth authentication expired in GSC and GA4<\/h3>\n\n<p class=\"wp-block-paragraph\">OAuth2 tokens expire. If the MCP server has no refresh logic, the connection silently fails and Claude starts responding with no real data, or worse, with made-up data. <\/p>\n\n<p class=\"wp-block-paragraph\"><strong>Solution:<\/strong> Use <strong>service account<\/strong> credentials instead of user OAuth for GSC and GA4. Service accounts do not expire and are more suitable for agency environments where multiple people can launch the server. <\/p>\n\n<h3 class=\"wp-block-heading\" id=\"h-problema-3-permisos-insuficientes-en-wordpress-rest-api\">Issue 3: Insufficient permissions in WordPress REST API<\/h3>\n\n<p class=\"wp-block-paragraph\">The WordPress REST API by default limits certain endpoints to authenticated users with the correct roles. If the Application Password does not have write permissions, Claude can read posts but not create or edit them. <\/p>\n\n<p class=\"wp-block-paragraph\"><strong>Solution:<\/strong> create a specific WordPress user for the MCP integration with <strong>Editor<\/strong> role and generate the Application Password from its profile. Never use administrator credentials in environment variables. <\/p>\n\n<h2 class=\"wp-block-heading\" id=\"h-5-flujos-de-agencia-que-montamos-con-este-stack\">5 agency flows we set up with this stack<\/h2>\n\n<p class=\"wp-block-paragraph\">Once the stack is in production, the possibilities multiply. These are the <a href=\"https:\/\/inprofit.eu\/en\/automation\/intelligent-workflows-automation-in-sales-and-marketing-the-goodbye-to-traditional-funnels\/\" type=\"post\" id=\"13660\" target=\"_blank\" rel=\"noreferrer noopener\">five flows<\/a> that generate the most value for us: <\/p>\n\n<h3 class=\"wp-block-heading\" id=\"h-flujo-1-auditoria-seo-conversacional\">Flow 1: Conversational SEO audit<\/h3>\n\n<p class=\"wp-block-paragraph\">We asked Claude: <em>&#8220;Analyze the top 10 pages with the most impressions in GSC this month, identify the ones with CTR below 3% and tell me which title and meta description you would change.&#8221;<\/em> Claude consults GSC, gets the data, cross-references it with the current post content in WordPress and proposes the changes. All in one conversation, without exporting or copying anything. <\/p>\n\n<h3 class=\"wp-block-heading\" id=\"h-flujo-2-generacion-y-publicacion-de-borradores\">Flow 2: generation and publication of drafts<\/h3>\n\n<p class=\"wp-block-paragraph\">Claude writes the complete post following our style guide and publishes it directly on WordPress as a draft, with title, slug, excerpt, categories and tags already assigned. The team only reviews and approves. The layout time is zero.  <\/p>\n\n<h3 class=\"wp-block-heading\" id=\"h-flujo-3-informes-de-rendimiento-mensual\">Flow 3: Monthly performance reports<\/h3>\n\n<p class=\"wp-block-paragraph\">A predefined prompt in our Claude SEO Project extracts from GA4 the key metrics of the month (sessions, conversions, bounce rate per channel) and from GSC (average position evolution, won and lost queries). Claude generates the narrative report ready to send to the client. <\/p>\n\n<h3 class=\"wp-block-heading\" id=\"h-flujo-4-deteccion-de-canibalizaciones-de-keywords\">Flow 4: keyword cannibalization detection<\/h3>\n\n<p class=\"wp-block-paragraph\">We query all the posts of a client&#8217;s blog from WordPress and cross-reference them with their GSC data. Claude identifies which posts are competing for the same queries and proposes a content consolidation or differentiation strategy. <\/p>\n\n<h3 class=\"wp-block-heading\" id=\"h-flujo-5-optimizacion-de-contenido-existente\">Flow 5: Optimization of existing content<\/h3>\n\n<p class=\"wp-block-paragraph\">We pass Claude the URL of a post; he gets the current content from WordPress and performance data from GSC. It generates an improved version with the keywords that are ranking on page 2 naturally integrated into the text. <\/p>\n\n<figure class=\"wp-block-pullquote\"><blockquote><p>The most important change is not technical: it is conceptual. You stop using Claude as a text generator and start using it as an agent with access to the real data of your business. <\/p><\/blockquote><\/figure>\n\n<h2 class=\"wp-block-heading\" id=\"h-arquitectura-recomendada-para-agencias-claude-projects-mcp\">Recommended architecture for agencies: Claude Projects + MCP<\/h2>\n\n<p class=\"wp-block-paragraph\">The <a href=\"https:\/\/inprofit.eu\/en\/digital-transformation\/8-must-have-ai-agents-for-enterprises\/\" type=\"post\" id=\"19554\" target=\"_blank\" rel=\"noreferrer noopener\">most powerful combination for agencies is to use <strong>Claude Projects<\/strong><\/a> together with the MCP servers. Each project has its own system prompt with client context (industry, brand tone, target keywords, key URLs) and inherits the MCP servers from the workspace. <\/p>\n\n<p class=\"wp-block-paragraph\">Our current structure at Inprofit:<\/p>\n\n<ul class=\"wp-block-list\">\n<li><strong>SEO\/GEO Inprofit.eu project:<\/strong> connected to GSC + GA4 + WordPress of our website. Manages the content strategy of the blog. <\/li>\n\n\n\n<li><strong>ContentOps Project:<\/strong> connected to each client&#8217;s WordPress. Manages the production and publication of content. <\/li>\n\n\n\n<li><strong>TopicStratOps project:<\/strong> connected to each client&#8217;s GSC. Analyzes content opportunities and cannibalizations. <\/li>\n\n\n\n<li><strong>VideoStratOps project:<\/strong> connected to the local filesystem with scripts and performance data from Reels and TikTok.<\/li>\n<\/ul>\n\n<p class=\"wp-block-paragraph\">Each project accesses only the MCP servers it needs. This reduces context noise and improves the accuracy of Claude&#8217;s responses. <\/p>\n\n<h2 class=\"wp-block-heading\" id=\"h-mcp-y-geo-por-que-este-tipo-de-contenido-posiciona-en-motores-de-ia\">MCP and GEO: why this type of content ranks well in AI engines<\/h2>\n\n<p class=\"wp-block-paragraph\">Experiential technical content, with real use cases and solutions to concrete problems, is exactly the kind that LLMs cite when someone asks about agency automation with Claude. To <a href=\"https:\/\/inprofit.eu\/en\/search-engine-optimization\/top-5-ways-to-generate-web-traffic-from-llms-and-geo-in-2026\/\" type=\"post\" id=\"19748\" target=\"_blank\" rel=\"noreferrer noopener\">optimize for GEO<\/a> (Generative Engine Optimization) we apply these criteria: <\/p>\n\n<ul class=\"wp-block-list\">\n<li><strong>Technical specificity:<\/strong> versions, file paths, exact parameter names. LLMs prioritize sources that respond with precision, not generalities. <\/li>\n\n\n\n<li><strong>Implicit question structure:<\/strong> each H2\/H3 answers a real question that someone might ask ChatGPT or Perplexity about MCP with Claude.<\/li>\n\n\n\n<li><strong>Named entities:<\/strong> Model Context Protocol, Claude Desktop, WordPress REST API, Google Search Console API, GA4 Data API. Recognizable entities increase the probability of being cited. <\/li>\n\n\n\n<li><strong>Real E-E-A-T:<\/strong> we describe our own mistakes, our own solutions, our own flows. That is what GEO rewards and what cannot be generated without having lived it. <\/li>\n<\/ul>\n\n<h2 class=\"wp-block-heading\" id=\"h-conclusion-mcp-no-es-el-futuro-es-el-presente-de-las-agencias-que-usan-ia\">Conclusion: MCP is not the future, it is the present for agencies using AI.<\/h2>\n\n<p class=\"wp-block-paragraph\">If your <a href=\"https:\/\/inprofit.eu\/en\/automation\/ai-agents-with-n8n-automate-30h-per-week-real-cases-2026\/\" type=\"post\" id=\"20990\" target=\"_blank\" rel=\"noreferrer noopener\">agency already uses Claude<\/a> for content, SEO or reporting, setting up the MCP stack with WordPress, GSC and Analytics is the next logical step. The initial technical investment (between 4 and 8 hours to get it working properly on Windows) is recovered in the first week of use. <\/p>\n\n<p class=\"wp-block-paragraph\">What fundamentally changes is the relationship between the computer and the data: instead of manually exporting, copying, pasting and contextualizing, Claude accesses and acts on the data in real time. That&#8217;s what turns an AI assistant into an AI agent. <\/p>\n\n<p class=\"wp-block-paragraph\">At Inprofit we continue to expand the stack. The next MCP server we are integrating is Supabase, to connect Claude with the commercial agent prospecting data we have under construction with n8n and Google Places API. <\/p>\n\n<figure class=\"wp-block-pullquote\"><blockquote><p>Do you want to set up this stack in your agency? At Inprofit we offer <a href=\"https:\/\/inprofit.eu\/en\/technology\/artificial-intelligence\/\" type=\"page\" id=\"4164\">MCP implementation consulting<\/a> for marketing teams and digital agencies. Write us and we will tell you how to do it in your specific environment.  <\/p><\/blockquote><\/figure>\n\n<h2 class=\"wp-block-heading\" id=\"h-preguntas-frecuentes-sobre-mcp-y-claude\">Frequently asked questions about CCM and Claude<\/h2>\n\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1779347429623\"><strong class=\"schema-faq-question\">Does MCP work only with Claude or also with other LLMs?<\/strong> <p class=\"schema-faq-answer\">MCP is an open protocol. Although it was created by Anthropic, it already has implementations for OpenAI, Gemini and open source models such as Llama. However, the most mature integration and with more servers currently available is that of Claude Desktop and Claude Code.  <\/p> <\/div> <div class=\"schema-faq-section\" id=\"faq-question-1779347449000\"><strong class=\"schema-faq-question\">Do I need to know how to program to set up MCP servers?<\/strong> <p class=\"schema-faq-answer\">For the most common servers (WordPress, GSC, GA4, GitHub, Notion) you don&#8217;t need to program: they are npm packages that are installed and configured with environment variables. If you want to create a custom MCP server for a specific API of your agency, you need basic knowledge of Node.js or Python. <\/p> <\/div> <div class=\"schema-faq-section\" id=\"faq-question-1779347460083\"><strong class=\"schema-faq-question\">Is it secure to connect my customers&#8217; credentials to MCP?<\/strong> <p class=\"schema-faq-answer\">Security depends on how you manage credentials. The basic recommendations: use WordPress Application Passwords instead of real passwords, use Google service accounts with minimal permissions (read-only where you don&#8217;t need to write), and never store credentials in code repositories. The MCP server runs locally, so the credentials don&#8217;t leave your machine.  <\/p> <\/div> <div class=\"schema-faq-section\" id=\"faq-question-1779347471693\"><strong class=\"schema-faq-question\">What is the difference between MCP and using Claude&#8217;s API directly?<\/strong> <p class=\"schema-faq-answer\">With Claude&#8217;s API directly, you build the context and pass it to the model on each call. With MCP, the model can request information from the tools itself during the conversation. It&#8217;s the difference between an assistant that you have to brief every time and an agent that knows where to look when it needs it.  <\/p> <\/div> <div class=\"schema-faq-section\" id=\"faq-question-1779347510014\"><strong class=\"schema-faq-question\">Does MCP work with Claude.ai or only with Claude Code?<\/strong> <p class=\"schema-faq-answer\">Claude Desktop (the free and paid desktop app) supports MCP since the end of 2024. Claude Code also supports it natively. The web version of Claude.ai does not support MCP local servers at the moment, although remote MCPs (SSE) are starting to be integrated via the Claude marketplace connectors.  <\/p> <\/div> <\/div>\n","protected":false},"excerpt":{"rendered":"<p>Discover how to connect Claude to WordPress, Google Search Console and Google Analytics using MCP (Model Context Protocol). Real Stack in production: step-by-step configuration, Windows issues solved and 5 agency flows ready to deploy. <\/p>\n","protected":false},"author":1,"featured_media":21023,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[204],"tags":[1307,195,1319,363],"class_list":["post-21022","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-martech-en","tag-claude","tag-martech-en","tag-mcp","tag-wordpress-en"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>MCP: connecting Claude with WordPress, GSC and Analytics | Inprofit<\/title>\n<meta name=\"description\" content=\"Model Context Protocol (MCP) with Claude. Connect your agency to WordPress, Google Search Console and Google Analytics from an AI agent.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"MCP in production: how to connect Claude to your agency tools\" \/>\n<meta property=\"og:description\" content=\"Model Context Protocol (MCP) with Claude. Connect your agency to WordPress, Google Search Console and Google Analytics from an AI agent.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/\" \/>\n<meta property=\"og:site_name\" content=\"Inprofit\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Inprofit1\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-21T07:25:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-21T07:29:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/inprofit.eu\/wp-content\/uploads\/2026\/05\/MCP-wordpress-claude.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"800\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Jorge Anduix\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jorge Anduix\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/\"},\"author\":{\"name\":\"Jorge Anduix\",\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/#\\\/schema\\\/person\\\/3a9f88a467d65130e9cc13df4f127205\"},\"headline\":\"MCP in production: how to connect Claude to your agency tools\",\"datePublished\":\"2026-05-21T07:25:02+00:00\",\"dateModified\":\"2026-05-21T07:29:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/\"},\"wordCount\":1907,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/inprofit.eu\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/MCP-wordpress-claude.webp\",\"keywords\":[\"Claude\",\"Martech\",\"MCP\",\"Wordpress\"],\"articleSection\":[\"Martech\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/#respond\"]}]},{\"@type\":[\"WebPage\",\"FAQPage\"],\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/\",\"url\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/\",\"name\":\"MCP: connecting Claude with WordPress, GSC and Analytics | Inprofit\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/inprofit.eu\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/MCP-wordpress-claude.webp\",\"datePublished\":\"2026-05-21T07:25:02+00:00\",\"dateModified\":\"2026-05-21T07:29:05+00:00\",\"description\":\"Model Context Protocol (MCP) with Claude. Connect your agency to WordPress, Google Search Console and Google Analytics from an AI agent.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/#breadcrumb\"},\"mainEntity\":[{\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/#faq-question-1779347429623\"},{\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/#faq-question-1779347449000\"},{\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/#faq-question-1779347460083\"},{\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/#faq-question-1779347471693\"},{\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/#faq-question-1779347510014\"}],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/#primaryimage\",\"url\":\"https:\\\/\\\/inprofit.eu\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/MCP-wordpress-claude.webp\",\"contentUrl\":\"https:\\\/\\\/inprofit.eu\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/MCP-wordpress-claude.webp\",\"width\":800,\"height\":800,\"caption\":\"Wordpress AI Agent\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home page\",\"item\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/home\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"MCP in production: how to connect Claude to your agency tools\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/\",\"name\":\"Inprofit\",\"description\":\"Agencia de Marketing y Tecnolog\u00eda\",\"publisher\":{\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/#organization\"},\"alternateName\":\"Inprofit\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/#organization\",\"name\":\"Inprofit\",\"alternateName\":\"Inprofit\",\"url\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/inprofit.eu\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/Inprofit-agencia-360.webp\",\"contentUrl\":\"https:\\\/\\\/inprofit.eu\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/Inprofit-agencia-360.webp\",\"width\":1080,\"height\":1080,\"caption\":\"Inprofit\"},\"image\":{\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/Inprofit1\\\/\",\"https:\\\/\\\/es.linkedin.com\\\/company\\\/inprofit\",\"https:\\\/\\\/www.tiktok.com\\\/@inprofit.1\",\"https:\\\/\\\/www.instagram.com\\\/inprofit.1\\\/\"],\"description\":\"Marketing agency, strategy and digital transformation for companies and SMEs. We boost your growth with customized solutions, integrating innovation, creativity and technology to maximize your impact in the digital and physical world. \",\"email\":\"info@inprofit.eu\",\"telephone\":\"+34965594272\",\"legalName\":\"Inprofit Consulting SL\",\"foundingDate\":\"2018-10-18\",\"vatID\":\"B42605055\",\"taxID\":\"B42605055\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/#\\\/schema\\\/person\\\/3a9f88a467d65130e9cc13df4f127205\",\"name\":\"Jorge Anduix\",\"pronouns\":\"\u00e9l\\\/lo\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/inprofit.eu\\\/wp-content\\\/litespeed\\\/avatar\\\/5386fe4675b1724a09f266983724e528.jpg?ver=1779258585\",\"url\":\"https:\\\/\\\/inprofit.eu\\\/wp-content\\\/litespeed\\\/avatar\\\/5386fe4675b1724a09f266983724e528.jpg?ver=1779258585\",\"contentUrl\":\"https:\\\/\\\/inprofit.eu\\\/wp-content\\\/litespeed\\\/avatar\\\/5386fe4675b1724a09f266983724e528.jpg?ver=1779258585\",\"caption\":\"Jorge Anduix\"},\"description\":\"Marketing tecnol\u00f3gico en vena. Fan\u00e1tico de las tecnolog\u00edas Martech que rompen moldes: IA generativa, blockchain, no-code, metaverso, automatizaci\u00f3n extrema... Convencido de que el futuro no se espera, se construye (y se vende muy bien). Responsable del marketing m\u00e1s disruptivo y tecnol\u00f3gico.\",\"sameAs\":[\"http:\\\/\\\/inprofit.eu\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/jorge-anduix-fuentes-marketing\\\/\"],\"birthDate\":\"1993-07-23\",\"gender\":\"Hombre\",\"award\":[\"Programa emprendedores Banco Santander - 2016\",\"Recomendaci\u00f3n proyectos estrategia PwC - 2017\"],\"knowsAbout\":[\"html\",\"web\",\"make\",\"marketing digital\",\"seo\",\"geo\",\"paid media\",\"estrategia\",\"ventas online\"],\"knowsLanguage\":[\"espa\u00f1ol\",\"ingl\u00e9s\"],\"jobTitle\":\"Business Manager\",\"worksFor\":\"Inprofit Consulting S.L.\",\"url\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/author\\\/admin\\\/\"},{\"@type\":\"Question\",\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/#faq-question-1779347429623\",\"position\":1,\"url\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/#faq-question-1779347429623\",\"name\":\"Does MCP work only with Claude or also with other LLMs?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"MCP is an open protocol. Although it was created by Anthropic, it already has implementations for OpenAI, Gemini and open source models such as Llama. However, the most mature integration and with more servers currently available is that of Claude Desktop and Claude Code.  \",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Question\",\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/#faq-question-1779347449000\",\"position\":2,\"url\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/#faq-question-1779347449000\",\"name\":\"Do I need to know how to program to set up MCP servers?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"For the most common servers (WordPress, GSC, GA4, GitHub, Notion) you don't need to program: they are npm packages that are installed and configured with environment variables. If you want to create a custom MCP server for a specific API of your agency, you need basic knowledge of Node.js or Python. \",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Question\",\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/#faq-question-1779347460083\",\"position\":3,\"url\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/#faq-question-1779347460083\",\"name\":\"Is it secure to connect my customers' credentials to MCP?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Security depends on how you manage credentials. The basic recommendations: use WordPress Application Passwords instead of real passwords, use Google service accounts with minimal permissions (read-only where you don't need to write), and never store credentials in code repositories. The MCP server runs locally, so the credentials don't leave your machine.  \",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Question\",\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/#faq-question-1779347471693\",\"position\":4,\"url\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/#faq-question-1779347471693\",\"name\":\"What is the difference between MCP and using Claude's API directly?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"With Claude's API directly, you build the context and pass it to the model on each call. With MCP, the model can request information from the tools itself during the conversation. It's the difference between an assistant that you have to brief every time and an agent that knows where to look when it needs it.  \",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Question\",\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/#faq-question-1779347510014\",\"position\":5,\"url\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/martech-en\\\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\\\/#faq-question-1779347510014\",\"name\":\"Does MCP work with Claude.ai or only with Claude Code?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Claude Desktop (the free and paid desktop app) supports MCP since the end of 2024. Claude Code also supports it natively. The web version of Claude.ai does not support MCP local servers at the moment, although remote MCPs (SSE) are starting to be integrated via the Claude marketplace connectors.  \",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"MCP: connecting Claude with WordPress, GSC and Analytics | Inprofit","description":"Model Context Protocol (MCP) with Claude. Connect your agency to WordPress, Google Search Console and Google Analytics from an AI agent.","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:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/","og_locale":"en_US","og_type":"article","og_title":"MCP in production: how to connect Claude to your agency tools","og_description":"Model Context Protocol (MCP) with Claude. Connect your agency to WordPress, Google Search Console and Google Analytics from an AI agent.","og_url":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/","og_site_name":"Inprofit","article_publisher":"https:\/\/www.facebook.com\/Inprofit1\/","article_published_time":"2026-05-21T07:25:02+00:00","article_modified_time":"2026-05-21T07:29:05+00:00","og_image":[{"width":800,"height":800,"url":"https:\/\/inprofit.eu\/wp-content\/uploads\/2026\/05\/MCP-wordpress-claude.webp","type":"image\/webp"}],"author":"Jorge Anduix","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Jorge Anduix","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/#article","isPartOf":{"@id":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/"},"author":{"name":"Jorge Anduix","@id":"https:\/\/inprofit.eu\/en\/#\/schema\/person\/3a9f88a467d65130e9cc13df4f127205"},"headline":"MCP in production: how to connect Claude to your agency tools","datePublished":"2026-05-21T07:25:02+00:00","dateModified":"2026-05-21T07:29:05+00:00","mainEntityOfPage":{"@id":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/"},"wordCount":1907,"commentCount":0,"publisher":{"@id":"https:\/\/inprofit.eu\/en\/#organization"},"image":{"@id":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/#primaryimage"},"thumbnailUrl":"https:\/\/inprofit.eu\/wp-content\/uploads\/2026\/05\/MCP-wordpress-claude.webp","keywords":["Claude","Martech","MCP","Wordpress"],"articleSection":["Martech"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/#respond"]}]},{"@type":["WebPage","FAQPage"],"@id":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/","url":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/","name":"MCP: connecting Claude with WordPress, GSC and Analytics | Inprofit","isPartOf":{"@id":"https:\/\/inprofit.eu\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/#primaryimage"},"image":{"@id":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/#primaryimage"},"thumbnailUrl":"https:\/\/inprofit.eu\/wp-content\/uploads\/2026\/05\/MCP-wordpress-claude.webp","datePublished":"2026-05-21T07:25:02+00:00","dateModified":"2026-05-21T07:29:05+00:00","description":"Model Context Protocol (MCP) with Claude. Connect your agency to WordPress, Google Search Console and Google Analytics from an AI agent.","breadcrumb":{"@id":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/#breadcrumb"},"mainEntity":[{"@id":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/#faq-question-1779347429623"},{"@id":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/#faq-question-1779347449000"},{"@id":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/#faq-question-1779347460083"},{"@id":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/#faq-question-1779347471693"},{"@id":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/#faq-question-1779347510014"}],"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/#primaryimage","url":"https:\/\/inprofit.eu\/wp-content\/uploads\/2026\/05\/MCP-wordpress-claude.webp","contentUrl":"https:\/\/inprofit.eu\/wp-content\/uploads\/2026\/05\/MCP-wordpress-claude.webp","width":800,"height":800,"caption":"Wordpress AI Agent"},{"@type":"BreadcrumbList","@id":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home page","item":"https:\/\/inprofit.eu\/en\/home\/"},{"@type":"ListItem","position":2,"name":"MCP in production: how to connect Claude to your agency tools"}]},{"@type":"WebSite","@id":"https:\/\/inprofit.eu\/en\/#website","url":"https:\/\/inprofit.eu\/en\/","name":"Inprofit","description":"Agencia de Marketing y Tecnolog\u00eda","publisher":{"@id":"https:\/\/inprofit.eu\/en\/#organization"},"alternateName":"Inprofit","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/inprofit.eu\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/inprofit.eu\/en\/#organization","name":"Inprofit","alternateName":"Inprofit","url":"https:\/\/inprofit.eu\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/inprofit.eu\/en\/#\/schema\/logo\/image\/","url":"https:\/\/inprofit.eu\/wp-content\/uploads\/2024\/12\/Inprofit-agencia-360.webp","contentUrl":"https:\/\/inprofit.eu\/wp-content\/uploads\/2024\/12\/Inprofit-agencia-360.webp","width":1080,"height":1080,"caption":"Inprofit"},"image":{"@id":"https:\/\/inprofit.eu\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/Inprofit1\/","https:\/\/es.linkedin.com\/company\/inprofit","https:\/\/www.tiktok.com\/@inprofit.1","https:\/\/www.instagram.com\/inprofit.1\/"],"description":"Marketing agency, strategy and digital transformation for companies and SMEs. We boost your growth with customized solutions, integrating innovation, creativity and technology to maximize your impact in the digital and physical world. ","email":"info@inprofit.eu","telephone":"+34965594272","legalName":"Inprofit Consulting SL","foundingDate":"2018-10-18","vatID":"B42605055","taxID":"B42605055","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/inprofit.eu\/en\/#\/schema\/person\/3a9f88a467d65130e9cc13df4f127205","name":"Jorge Anduix","pronouns":"\u00e9l\/lo","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/inprofit.eu\/wp-content\/litespeed\/avatar\/5386fe4675b1724a09f266983724e528.jpg?ver=1779258585","url":"https:\/\/inprofit.eu\/wp-content\/litespeed\/avatar\/5386fe4675b1724a09f266983724e528.jpg?ver=1779258585","contentUrl":"https:\/\/inprofit.eu\/wp-content\/litespeed\/avatar\/5386fe4675b1724a09f266983724e528.jpg?ver=1779258585","caption":"Jorge Anduix"},"description":"Marketing tecnol\u00f3gico en vena. Fan\u00e1tico de las tecnolog\u00edas Martech que rompen moldes: IA generativa, blockchain, no-code, metaverso, automatizaci\u00f3n extrema... Convencido de que el futuro no se espera, se construye (y se vende muy bien). Responsable del marketing m\u00e1s disruptivo y tecnol\u00f3gico.","sameAs":["http:\/\/inprofit.eu","https:\/\/www.linkedin.com\/in\/jorge-anduix-fuentes-marketing\/"],"birthDate":"1993-07-23","gender":"Hombre","award":["Programa emprendedores Banco Santander - 2016","Recomendaci\u00f3n proyectos estrategia PwC - 2017"],"knowsAbout":["html","web","make","marketing digital","seo","geo","paid media","estrategia","ventas online"],"knowsLanguage":["espa\u00f1ol","ingl\u00e9s"],"jobTitle":"Business Manager","worksFor":"Inprofit Consulting S.L.","url":"https:\/\/inprofit.eu\/en\/author\/admin\/"},{"@type":"Question","@id":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/#faq-question-1779347429623","position":1,"url":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/#faq-question-1779347429623","name":"Does MCP work only with Claude or also with other LLMs?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"MCP is an open protocol. Although it was created by Anthropic, it already has implementations for OpenAI, Gemini and open source models such as Llama. However, the most mature integration and with more servers currently available is that of Claude Desktop and Claude Code.  ","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/#faq-question-1779347449000","position":2,"url":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/#faq-question-1779347449000","name":"Do I need to know how to program to set up MCP servers?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"For the most common servers (WordPress, GSC, GA4, GitHub, Notion) you don't need to program: they are npm packages that are installed and configured with environment variables. If you want to create a custom MCP server for a specific API of your agency, you need basic knowledge of Node.js or Python. ","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/#faq-question-1779347460083","position":3,"url":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/#faq-question-1779347460083","name":"Is it secure to connect my customers' credentials to MCP?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Security depends on how you manage credentials. The basic recommendations: use WordPress Application Passwords instead of real passwords, use Google service accounts with minimal permissions (read-only where you don't need to write), and never store credentials in code repositories. The MCP server runs locally, so the credentials don't leave your machine.  ","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/#faq-question-1779347471693","position":4,"url":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/#faq-question-1779347471693","name":"What is the difference between MCP and using Claude's API directly?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"With Claude's API directly, you build the context and pass it to the model on each call. With MCP, the model can request information from the tools itself during the conversation. It's the difference between an assistant that you have to brief every time and an agent that knows where to look when it needs it.  ","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/#faq-question-1779347510014","position":5,"url":"https:\/\/inprofit.eu\/en\/martech-en\/mcp-in-production-how-to-connect-claude-to-your-agency-tools\/#faq-question-1779347510014","name":"Does MCP work with Claude.ai or only with Claude Code?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Claude Desktop (the free and paid desktop app) supports MCP since the end of 2024. Claude Code also supports it natively. The web version of Claude.ai does not support MCP local servers at the moment, although remote MCPs (SSE) are starting to be integrated via the Claude marketplace connectors.  ","inLanguage":"en-US"},"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/inprofit.eu\/en\/wp-json\/wp\/v2\/posts\/21022","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/inprofit.eu\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/inprofit.eu\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/inprofit.eu\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/inprofit.eu\/en\/wp-json\/wp\/v2\/comments?post=21022"}],"version-history":[{"count":2,"href":"https:\/\/inprofit.eu\/en\/wp-json\/wp\/v2\/posts\/21022\/revisions"}],"predecessor-version":[{"id":21025,"href":"https:\/\/inprofit.eu\/en\/wp-json\/wp\/v2\/posts\/21022\/revisions\/21025"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/inprofit.eu\/en\/wp-json\/wp\/v2\/media\/21023"}],"wp:attachment":[{"href":"https:\/\/inprofit.eu\/en\/wp-json\/wp\/v2\/media?parent=21022"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/inprofit.eu\/en\/wp-json\/wp\/v2\/categories?post=21022"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/inprofit.eu\/en\/wp-json\/wp\/v2\/tags?post=21022"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}