How to Use the Browser Bookmarks Parser MCP in Mastra AI
Build automated bookmark cleaning workflows with Mastra AI and this parser.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Browser Bookmarks Parser MCP to Mastra AI
Create your Vinkius account to connect Browser Bookmarks Parser to Mastra AI and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.
Trigger Mastra workflows from browser bookmark exports
The Browser Bookmarks Parser MCP Server provides the `parse_browser_bookmarks` tool to feed raw HTML exports into Mastra's workflow engine. You can build a multi-step pipeline that automatically processes a user's exported file, structures the links, and runs validation checks. If a step fails or a file is corrupted, Mastra's built-in retry logic handles the exception gracefully. The workflow takes the absolute file path, runs the parser, and hands the structured JSON to the next agent in your pipeline.
Human-in-the-loop validation for Mastra AI agents
This MCP Server integrates with Mastra's `requireToolApproval` to let you review parsed folders before they write to a database. When `parse_browser_bookmarks` processes a messy Safari export, the agent halts the workflow to let you approve the newly generated JSON structure. You prevent messy or duplicate folder structures from polluting your system. Once approved, the workflow resumes and writes the clean bookmark tree to your production database.
Automate link deduplication with Mastra workflows
You can chain this MCP Server with Mastra agents to find and delete dead URLs automatically. The tool outputs a flat JSON structure of your links, making it easy for Mastra's workflow engine to run parallel ping tests on every URL. It filters out 404s and groups similar bookmarks together. The agent then outputs a clean, consolidated Netscape HTML file you can import back into Chrome.
Set up Browser Bookmarks Parser 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 Browser Bookmarks Parser 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: "browser-bookmarks-parser-mcp-client",
servers: {
"browser-bookmarks-parser-mcp": {
url: new URL(
"https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
),
},
},
});
const agent = new Agent({
name: "Browser Bookmarks Parser Agent",
model: openai("gpt-4o"),
instructions: "You have access to Browser Bookmarks Parser tools.",
tools: {
...(await mcpClient.listTools()),
},
});
const result = await agent.generate(
"List recent Browser Bookmarks Parser 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 bookmarks-parser. 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 Browser Bookmarks Parser MCP in Mastra AI
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Browser Bookmarks Parser MCP today
We host it, we monitor it, we maintain it. You just paste one token.