Instaparser plugins for Claude Code - article parsing, PDF extraction, and content summarization.
npx claudepluginhub instapaper/instaparser-claude-pluginParse articles, extract PDF content, and generate AI-powered summaries from any URL using the Instaparser API.
A Claude plugin that enables article parsing, PDF extraction, and content summarization via the Instaparser API.
This plugin teaches Claude how to use the Instaparser API to:
Sign up at instaparser.com and grab your API key.
Claude Code CLI:
claude plugin add instapaper/instaparser-claude-plugin
During installation, you'll be prompted to enter your INSTAPARSER_API_KEY.
Manual install:
Clone or copy this repository, then load it as a local plugin:
claude --plugin-dir ./instaparser-claude-plugin
Once installed, use the skill via its namespaced command (/instaparser:instaparser-api) or just ask Claude naturally:
| You say | What happens |
|---|---|
| "Parse this article: https://example.com/post" | Extracts title, author, body text, images |
| "Get the text from this PDF: https://example.com/report.pdf" | Extracts text content from the PDF |
| "Summarize this article: https://example.com/post" | Returns a summary and key sentences |
| "What does this page say? https://example.com/page" | Parses and presents the article content |
You: Can you parse this article and give me the key points?
https://www.example.com/blog/interesting-post
Claude: I'll parse that article using Instaparser...
"Interesting Post Title"
By Author Name | Published Jan 15, 2026
1,247 words
Here are the key points:
- Point one from the article...
- Point two from the article...
- Point three from the article...
| Endpoint | Method | Credits | Description |
|---|---|---|---|
/api/1/article | POST | 1 | Parse an article from a URL |
/api/1/pdf | GET/POST | 5/page | Parse a PDF from URL or file upload |
/api/1/summary | POST | 10 | Generate an AI summary of an article |
instaparser-claude-plugin/
├── .claude-plugin/
│ └── plugin.json # Plugin manifest
├── skills/
│ └── instaparser-api/
│ └── SKILL.md # Skill definition
├── README.md # This file
├── LICENSE # MIT License
├── CONTRIBUTING.md # Contribution guidelines
├── CODE_OF_CONDUCT.md # Community standards
└── CHANGELOG.md # Version history
INSTAPARSER_API_KEY configured via plugin settings or environment variableEach API call consumes credits from your Instaparser account:
| API | Credits per Call |
|---|---|
| Article | 1 credit |
| 5 credits per page | |
| Summary | 10 credits |
Visit instaparser.com for pricing details.
Contributions are welcome! Please see CONTRIBUTING.md for guidelines.
This project is licensed under the MIT License — see the LICENSE file for details.