MCP IntegrationBeta
Connect AI assistants to your LinkedMash bookmarks using the Model Context Protocol (MCP). Let tools like Claude search, filter, label and manage your saved posts through natural-language commands.
What is MCP?
The Model Context Protocol is an open standard that lets AI assistants securely access external data and tools. The LinkedMash MCP server gives your assistant direct, scoped access to your bookmarks — enabling powerful automation and organization without copy-pasting between apps.
Natural language
Smart search
Auto organization
Prerequisites
Three things before you connect:
@linkedmash/mcp server locally, or deploy it with zero config via Smithery.Getting started
Generate a LinkedMash API token
From your dashboard:
- Open your LinkedMash dashboard
- Go to Settings → Developer API
- Click Generate new token
- Copy the token — you'll need it in the next step
Choose your setup method
Option A — Manual configuration
Set up the MCP server locally using STDIO transport. Add this to your client's config file:
{
"mcpServers": {
"linkedmash": {
"command": "npx",
"args": ["@linkedmash/mcp"],
"env": {
"LINKEDMASH_TOKEN": "your-token-here"
}
}
}
}Config file locations
- Claude Desktop —
~/.claude/claude_desktop_config.json - Other clients — check your client's documentation
Option B — Smithery (hosted)
Use Smithery to deploy and manage the MCP server with zero local configuration:
- Open the Smithery LinkedMash server
- Under Connect, follow the install instructions
- Paste your LinkedMash API token when prompted
Test your connection
Once configured, restart your client and ask your assistant any of these:
- “Show me my recent bookmarks”
- “Find bookmarks about technology”
- “How many bookmarks do I have?”
- “List my labels”
Available tools
The MCP server exposes these tools to your assistant:
API endpoints reference
MCP tools call these LinkedMash endpoints under the hood. You can use them directly in your own apps too:
list_bookmarks and search_bookmarks.list_labels tool.add_labels_to_tweets tool.Supported AI clients
Claude Desktop
~/.claude/claude_desktop_config.json · Setup guideRaycast
Other MCP clients
Frequently asked questions
How does the AI assistant access my bookmarks?
It connects to your LinkedMash account through MCP using your API token. Data is only accessed when you make a specific request — nothing runs in the background.
Can I customize the assistant's behavior?
Yes. Give the assistant instructions on how to organize, categorize, or present your bookmarks, and it follows your preferences for the session.
Is my data secure?
Your API token is scoped to your account and the assistant only reads your bookmarks when you ask. LinkedMash doesn't share your data with third parties.
What's the difference between Smithery and manual setup?
Smithery is a managed, hosted solution with automatic updates and zero maintenance. Manual setup gives you full control but you run and update the server yourself.