- Home
- MCP servers
- javascript
9
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"kazuph-mcp-pocket": {
"command": "npx",
"args": [
"-y",
"@kazuph/mcp-pocket"
],
"env": {
"POCKET_ACCESS_TOKEN": "YOUR_POCKET_ACCESS_TOKEN_PLACEHOLDER",
"POCKET_CONSUMER_KEY": "YOUR_POCKET_CONSUMER_KEY_PLACEHOLDER"
}
}
}
}You can connect Claude Desktop or any MCP client to fetch your saved Pocket articles and manage them through a lightweight MCP server. This pocket connector exposes two main actions: retrieving your saved Pocket articles and marking items as read, enabling you to browse and organize Pocket content directly from your MCP client.
How to use
Configure your MCP client to connect to the Pocket MCP Server using the provided command and environment variables. You will rely on an MCP stdio server that runs locally through npx and the pocket MCP package.
- Prepare the runtime configuration in Claude Desktop. Create or edit the following configuration to enable the Pocket MCP server. Replace the credentials with your actual Pocket keys.
{
"mcpServers": {
"pocket": {
"command": "npx",
"args": ["-y", "@kazuph/mcp-pocket"],
"env": {
"POCKET_CONSUMER_KEY": "your-pocket-consumer-key",
"POCKET_ACCESS_TOKEN": "your-pocket-access-token"
}
}
}
}
Available tools
pocket_get_articles
Fetch your saved pocket articles and return their title, URL, and excerpt for each item.
pocket_mark_as_read
Mark a specific Pocket item as read (archived) in your Pocket account using its item ID.