Zero Core Tools
Official9 toolsby meltingpixelsai · TypeScript
Web scraping, code review, content gen, sentiment. Zero Core Tools.
Web scraping, code review, content generation, and sentiment analysis tools.
Captured live from the server via tools/list.
list_tools
List all available Zero Core Tools with pricing and input requirements. Use this for discovery.
No parameters.
health
Check Zero Core Tools server status, uptime, and payment network configuration.
No parameters.
scrape_url
Scrape any URL and return cleaned text content. Powered by Playwright headless browser. Returns title, content, word count.
Parameters (2)
- urlstringrequired
URL to scrape
- max_lengthnumber
Max content length in chars (default: 10000)
screenshot_url
Take a full-page screenshot of any URL. Returns base64-encoded PNG image.
Parameters (4)
- urlstringrequired
URL to screenshot
- full_pageboolean
Capture full page scroll height (default: true)
- widthnumber
Viewport width in pixels (default: 1280)
- heightnumber
Viewport height in pixels (default: 720)
extract_structured_data
Scrape a URL then use AI to extract structured JSON data matching your schema description. Combines Playwright scraping with Grok LLM extraction.
Parameters (2)
- urlstringrequired
URL to scrape
- schema_descriptionstringrequired
Description of the data to extract and desired JSON structure. Example: 'Extract all product names and prices as {products: [{name, price}]}'
review_code
AI-powered security and quality code review. Analyzes for vulnerabilities, anti-patterns, performance issues, and best practices. Returns issues with severity, suggestions, and an overall score.
Parameters (3)
- codestringrequired
Source code to review
- languagestring
Programming language (auto-detected if omitted)
- focusstring
Focus area: security, quality, performance, or all (default: all)
generate_content
Generate high-quality written content. Supports blog posts, product descriptions, documentation, social posts, and emails. Customizable tone, length, and keywords.
Parameters (5)
- typestringrequired
Content type
- topicstringrequired
Topic or subject to write about
- tonestring
Writing tone (default: professional)
- lengthstring
Target length (default: medium)
- keywordsstring
Comma-separated keywords to include
analyze_sentiment
Analyze sentiment of text with entity extraction, confidence scores, and key phrase identification. Returns positive/negative/neutral/mixed with detailed breakdown.
Parameters (1)
- textstringrequired
Text to analyze for sentiment
search_web
Search the web via Google and return organic results with titles, links, and snippets. Optionally returns answer box if available.
Parameters (2)
- querystringrequired
Search query
- num_resultsnumber
Number of results to return (default: 10)
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"zero-core-tools": {
"command": "npx",
"args": [
"-y",
"@meltingpixels/zero-core-tools@1.0.0"
]
}
}
}