Boards & Pins MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PINTEREST_APP_ID | No | Pinterest app ID for OAuth 2.0 (required with app secret) | |
| PINTEREST_APP_SECRET | No | Pinterest app secret for OAuth 2.0 (required with app ID) | |
| PINTEREST_ACCESS_TOKEN | No | Direct access token for Pinterest API (read-only) |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| pinterest_authA | Initiate Pinterest OAuth authentication flow. Opens a browser for you to authorize the app. |
| pinterest_auth_statusA | Check current Pinterest authentication status. |
| list_boardsB | List all boards for the authenticated Pinterest user. |
| get_boardB | Get full details of a specific Pinterest board. |
| list_board_sectionsB | List all sections of a Pinterest board. |
| list_pinsB | List pins on a board or board section. |
| get_pinA | Get full details of a specific pin including image URLs. |
| get_pin_imageA | Fetch a pin's image so it can be analyzed visually. Returns the image as viewable content. |
| get_pin_analyticsB | Get analytics for a pin (impressions, clicks, saves, etc.). |
| search_pinsB | Search your pins by keyword. |
| search_boardsB | Search your boards by keyword. |
| get_user_profileB | Get the authenticated user's Pinterest profile information. |
| list_followersC | List your Pinterest followers. |
| list_followingA | List the accounts you follow on Pinterest. |
| get_user_analyticsB | Get analytics for your Pinterest account (impressions, engagement, saves, etc.). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 15 tools
Each tool has a clear, distinct purpose: list versus get, retrieval versus analytics, etc. No two tools appear to overlap in function.
All tool names follow a consistent verb_noun pattern using snake_case (e.g., get_board, list_pins, search_boards, pinterest_auth_status).
With 15 tools, the server is well-scoped for a Pinterest API wrapper, covering boards, pins, analytics, authentication, user profile, and social lists without being excessive.
The tool set is entirely read-only and lacks any create, update, or delete operations for boards or pins, which is a significant gap given the server name implies management of boards and pins.