npm @averra/extract-mcpstdioMITupdated 5mo ago
MCP (Model Context Protocol) server for Averra Extract ā lets AI agents like Claude, Cursor, and ChatGPT convert any webpage into clean, LLM-ready Markdown.
What can you do with extract?
Averra Extract MCP Server
MCP (Model Context Protocol) server for Averra Extract ā lets AI agents like Claude, Cursor, and ChatGPT convert any webpage into clean, LLM-ready Markdown.
Listed in the official MCP registry as dev.averra/extract. MCP clients that support registry-based install can reference that identifier directly; for clients that need manual configuration, see the install sections below.
What it does
Exposes the Averra Extract API as 5 MCP tools:
| Tool | Description |
|---|---|
averra_extract_url |
Convert any URL to clean Markdown with metadata |
averra_check_usage |
Check monthly quota and remaining requests |
averra_create_api_key |
Create a new API key |
averra_list_api_keys |
List all API keys on the account |
averra_revoke_api_key |
Revoke an API key by ID |
Get an API key
Sign up at averra.dev ā the free plan includes 50 requests/month.
Install (Claude Desktop)
Add this to your claude_desktop_config.json:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"averra-extract": {
"command": "npx",
"args": ["-y", "@averra/extract-mcp"],
"env": {
"AVERRA_EXTRACT_API_KEY": "sk_live_your_key_here"
}
}
}
}
Restart Claude Desktop. The 5 tools will appear in your session.
Install (Cursor)
Add to ~/.cursor/mcp.json (or use the Cursor MCP settings UI):
{
"mcpServers": {
"averra-extract": {
"command": "npx",
"args": ["-y", "@averra/extract-mcp"],
"env": {
"AVERRA_EXTRACT_API_KEY": "sk_live_your_key_here"
}
}
}
}
Install (other MCP clients)
Any stdio-based MCP client works. Point it at npx -y @averra/extract-mcp with AVERRA_EXTRACT_API_KEY in the environment.
Configuration
| Env var | Required | Default | Description |
|---|---|---|---|
AVERRA_EXTRACT_API_KEY |
yes | ā | Your Extract API key (starts with sk_live_) |
AVERRA_EXTRACT_BASE_URL |
no | https://averra.dev |
Override API host |
TRANSPORT |
no | stdio |
stdio (local) or http (hosted) |
PORT |
no | 3000 |
Port when TRANSPORT=http |
Example prompts (Claude Desktop)
Once installed, try:
- "Extract the content from https://example.com and summarize it"
- "What's my remaining Extract quota this month?"
- "Read https://docs.anthropic.com/en/docs/intro and tell me the key concepts"
- "List my Extract API keys"
License
MIT
Install
Add extract to your client. Pick the one you use.
claude mcp add extract-mcp -- npx -y @averra/extract-mcpcodex mcp add extract-mcp -- npx -y @averra/extract-mcpamp mcp add extract-mcp -- npx -y @averra/extract-mcp{
"mcpServers": {
"extract-mcp": {
"command": "npx",
"args": [
"-y",
"@averra/extract-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"extract-mcp": {
"command": "npx",
"args": [
"-y",
"@averra/extract-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"extract-mcp","command":"npx","args":["-y","@averra/extract-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"extract-mcp": {
"command": "npx",
"args": [
"-y",
"@averra/extract-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"extract-mcp": {
"command": "npx",
"args": [
"-y",
"@averra/extract-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"extract-mcp": {
"command": "npx",
"args": [
"-y",
"@averra/extract-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"extract-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@averra/extract-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"extract-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@averra/extract-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @averra/extract-mcpRun `goose configure`, choose **Add Extension ā Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance13/25
- Trust13/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 142 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint ā no local install
Version history
| Versions | Published |
|---|---|
| 0.1.5Latest | Apr 11, 2026 |
| 0.1.4 | Apr 11, 2026 |