Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PINBOARD_TOKEN | Yes | Your Pinboard API token in format username:token |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_bookmarks | Search bookmarks by query string across titles, notes, and tags (recent focus). Args:
query: Search query to match against bookmark titles, notes, and tags
limit: Maximum number of results to return (1-100, default 20)
Note: Searches recent bookmarks first, expands automatically if needed.
For comprehensive historical search, use search_bookmarks_extended. |
| search_bookmarks_extended | Extended search for comprehensive historical results across titles, notes, and tags. Args:
query: Search query to match against bookmark titles, notes, and tags
days_back: How many days back to search (1-730, default 365 = 1 year)
limit: Maximum number of results to return (1-200, default 100)
Note: Provides comprehensive results while being mindful of server load.
Use tag-based searches for most efficient access to historical bookmarks. |
| list_recent_bookmarks | List bookmarks saved in the last N days. Args:
days: Number of days to look back (1-30, default 7)
limit: Maximum number of results to return (1-100, default 20) |
| list_bookmarks_by_tags | List ALL bookmarks filtered by tags and optional date range. Args:
tags: List of tags to filter by (1-3 tags)
from_date: Start date in ISO format (YYYY-MM-DD), optional
to_date: End date in ISO format (YYYY-MM-DD), optional
limit: Maximum number of results to return (1-200, default 100)
Note: Gets ALL bookmarks with specified tags, regardless of age.
Very efficient for tag-based searches. Provides generous data for analysis. |
| list_tags | List all tags with their usage counts. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |