How to Use the Surfer SEO MCP in Mastra AI
Build reliable, multi-step SEO workflows using the mastra-ai framework.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Surfer SEO MCP to Mastra AI
Create your Vinkius account to connect Surfer SEO to Mastra AI — we handle the hosting, security, and runtime updates so you don't have to. No server setup required.
Key Capabilities
Automated audit workflows with mastra-ai
You can build a complex workflow that first calls `create_seo_audit()` for a URL. If the initial score is low, the next step automatically triggers a content editor query using `create_content_editor()`. This handles the entire remedial process from one command. If either tool fails—say, the API rate limits hit—the mastra-ai framework automatically retries with exponential backoff. You don't write that failure logic; the workflow engine takes care of it.
Conditional content analysis for mastra-ai
Need to check an audit only if certain keywords are missing? Use conditional branching in your workflow. Your process runs `create_serp_analyzer()` first, checks the results for specific ranking factors, and *only* proceeds to call `get_content_editor_details` if those factors aren't present. This capability means you build smart, failure-proof systems that only act when necessary. It's perfect for complex editorial pipelines.
Managing Surfer SEO state with mastra-ai
The framework keeps track of every running query, which is crucial for multi-step processes. You can list all active audits via `list_seo_audits()` and then retrieve specific results using `get_audit_details()`. This provides a single source of truth for your entire content pipeline. It manages the state transition: from 'Audit Initiated' to 'Details Ready,' ensuring no step is lost, even if the network hiccups.
Set up Surfer SEO MCP in Mastra AI
Prerequisites
- Node.js 18+ and a TypeScript project
-
@mastra/mcp+@mastra/corepackages - Active Vinkius subscription with a valid endpoint token
- 1
Install dependencies
Run
npm install @mastra/mcp @mastra/coreplus your preferred model provider (e.g.@ai-sdk/openai). - 2
Configure the MCPClient
Create an
MCPClientwith your Vinkius endpoint as aURLobject. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. - 3
Discover and inject tools
Call
mcpClient.listTools()and spread the result into your agent'stoolsobject. All Surfer SEO tools become native Mastra tools. - 4
Run with any model
Swap
openai("gpt-4o")for any AI SDK-compatible provider. Callagent.generate()and the agent routes tool calls through MCP automatically.
import { MCPClient } from "@mastra/mcp";
import { Agent } from "@mastra/core/agent";
import { openai } from "@ai-sdk/openai";
const mcpClient = new MCPClient({
id: "surfer-seo-mcp-client",
servers: {
"surfer-seo-mcp": {
url: new URL(
"https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
),
},
},
});
const agent = new Agent({
name: "Surfer SEO Agent",
model: openai("gpt-4o"),
instructions: "You have access to Surfer SEO tools.",
tools: {
...(await mcpClient.listTools()),
},
});
const result = await agent.generate(
"List recent Surfer SEO transactions"
);
console.log(result.text); Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by Surfer SEO. All third-party trademarks, logos, and brand names are the property of their respective owners. Their use on this website is strictly for informational purposes to identify service compatibility and interoperability.
Why Choose Vinkius
Vinkius connects your tools to AI with real-time monitoring and automatic cost savings — all from one dashboard.
Real-time monitoring
Live
visibility into every interaction
Connect your favorite tools to your AI and see exactly what's happening — every request, every response, in real time.
Built-in savings
60%
lower AI costs
Vinkius compresses data between your apps and your AI automatically. Lower bills every month — no configuration required.
Single dashboard
One
place for every integration
Every tool your AI connects to, managed from a single screen. One account, complete control.
Common questions about Surfer SEO MCP in Mastra AI
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Surfer SEO MCP today
We host it, we monitor it, we maintain it. You just paste one token.