
Pinboard MCP Server
Enables users to access and manage their Pinboard bookmarks directly through Claude Desktop. Supports retrieving, adding, and updating bookmarks with date filtering, tagging, and bookmark analysis capabilities.
README
I've been using pinboard for years to save bookmarks and wanted an easy way to access them directly in Claude Desktop.
The MCP server is intentionally minimal. I expose only the most basic bookmark operations (get, add, update) without any opinionated filtering or analysis features. This keeps the context usage low and lets claude do the interpretation work.
Once set up, you can ask Claude things like:
- "show me all my bookmarks from december 2023"
- "what were the main topics i was bookmarking last month?"
- "find bookmarks tagged with 'python' from this year"
- "analyze my bookmarking patterns over the last few weeks"
setup
clone the repo and build the docker image
clone the repo
git clone https://github.com/vicgarcia/pinboard-mcp.git
cd pinboard-mcp
build the docker image
docker build -t pinboard-mcp:local .
get your pinboard api token
go to pinboard settings and copy your api token (format: username:1234567890ABCDEF1234567890ABCDEF
)
setup mcp server in claude desktop
add this to your claude desktop mcp settings:
{
"mcpServers": {
"pinboard": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e", "PINBOARD_TOKEN=your-username:your-api-token",
"pinboard-mcp:local"
]
}
}
}
replace your-username:your-api-token
with your actual pinboard token
features
get_bookmarks
retrieve bookmarks within a date range
parameters:
start_date
(optional): start date in yyyy-mm-dd formatend_date
(optional): end date in yyyy-mm-dd formattags
(optional): comma-separated tags to filter bylimit
(optional): max bookmarks to return (default: 200, max: 500)
constraints:
- date range cannot exceed 90 days
- rate limited to respect pinboard's 3-second api limit
example usage in claude:
"get my bookmarks from last week with the tag 'python'"
add_bookmark
create a new bookmark
parameters:
url
(required): web address to bookmarktitle
(required): bookmark titledescription
(optional): extended descriptiontags
(optional): comma-separated tagsprivate
(optional): true for private, false for public (default: false)toread
(optional): mark as to-read (default: false)
example usage in claude:
"bookmark https://example.com with title 'interesting article' and tags 'research, ai'"
update_bookmark
update an existing bookmark by url
parameters:
url
(required): url of bookmark to updatetitle
(optional): new titledescription
(optional): new descriptiontags
(optional): new tags (replaces existing)private
(optional): change privacy settingtoread
(optional): change to-read status
example usage in claude:
"update the bookmark for https://example.com to add the tag 'important'"
dev
if you want to work on this locally:
git clone https://github.com/vicgarcia/pinboard-mcp
cd pinboard-mcp
# install dependencies
pip install -e .
project structure
src/
pinboard_mcp/
__init__.py # server startup and connection testing
server.py # mcp tools implementation
pinboard.py # pinboard api client and utilities
utils.py # validation helpers
building docker image
./build.sh
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.