skim402
Server Details
Clean web reader for AI agents. Free remote read tier, optional x402 pay-per-call. No API keys.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- JessieJanie/skim402
- GitHub Stars
- 2
- Server Listing
- skim-mcp
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.1/5 across 3 of 3 tools scored.
Each tool targets a distinctly different operation: skim_extract pulls structured JSON, skim_read returns clean Markdown, and skim_signals fetches curated feed items. There is no overlapping purpose or ambiguity between them.
All three tools follow the consistent skim_verb patterns (extract, read, signals). However, 'signals' is a noun while 'extract' and 'read' are verbs, a minor inconsistency in the verb_noun convention.
Three tools is on the lean side for a web-scraping/intelligence service. The coverage is sensible (extract, read, feed), but given the breadth of features offered across presets and feeds, it feels slightly thin though not unreasonable.
The three tools cover reading pages as Markdown, extracting structured JSON, and fetching curated feeds. Obvious gaps include no ability to search feeds or web, no batch operations, and no way to list/configure available presets or schemas beyond documentation.
Available Tools
3 toolsskim_extractExtract structured data from a web pageARead-onlyInspect
Read a public URL and extract structured JSON from it via Skim (skim402.com). Either pick a preset (article, product, job, review, event, table) or supply a JSON Schema (top-level type "object") describing the fields you want. Costs $0.015 USDC per call on Base via x402, paid from the wallet configured in the X-Skim-Wallet-Key connector header — this tool does not work without one.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Fully-qualified URL to read and extract from. | |
| preset | No | Named extraction preset. Provide either this or `schema`. | |
| schema | No | JSON Schema object (top-level {"type":"object", ...}) describing the desired output. Provide either this or `preset`. | |
| instructions | No | Optional natural-language hint to bias the extraction. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint=true and openWorldHint=true, aligning with the description. Beyond annotations, the description adds valuable context: the per-call cost ($0.015 USDC via x402) and the hard dependency on a wallet configured in the X-Skim-Wallet-Key connector header. It also notes the schema must have top-level type 'object'.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the core action and the two input modes, then packed with cost/wallet prerequisites. Zero filler words; every clause earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Well-covered for a tool with full schema coverage, read-only annotations, and no output schema. The description handles the mutually-exclusive parameters, cost, and auth prerequisite. Missing a note about expected return shape given no output schema, but annotations plus description make it adequately usable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the schema documents all 4 parameters. The description adds marginal value by explaining the preset-vs-schema mutual exclusivity and the top-level type 'object' constraint that isn't in the schema. It does not detail the schema format further, but baseline 3 is appropriate given full coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description uses specific verbs ('read', 'extract structured JSON') plus resource ('web page via Skim'). Clearly distinguishes from siblings (skim_read reads page content; this extracts structured JSON). Lists preset names and schema option explicitly.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Clearly explains the two mutually exclusive input modes (preset vs schema) and how to choose ('Either pick a preset...or supply a JSON Schema'). Notes cost and wallet requirement as prerequisites. Does not explicitly name sibling alternatives for when to use one vs another, so not a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
skim_readRead a web page as clean MarkdownARead-onlyInspect
Fetch a public URL and return clean, agent-ready Markdown via Skim (skim402.com): strips nav, ads, and boilerplate; preserves the article body plus metadata (title, byline, published date, language, excerpt). Use for articles, docs, blog posts, READMEs, and research papers. Free tier is rate-limited; with an X-Skim-Wallet-Key connector header each call is paid ($0.002 USDC on Base via x402) and unmetered.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Fully-qualified URL to fetch and clean (https://...). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true, covering the safety profile. The description adds value by disclosing rate-limiting, the paid-wallet alternative, and exact pricing ($0.002 on Base via x402), plus what it strips (nav, ads, boilerplate), going beyond what annotations provide.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, all earning their place: purpose, content types, and pricing/rate-limit notes. No wasted words, well front-loaded with the primary action first. Could trim slightly but it's efficient for an API with billing implications.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Simple one-param tool with full schema coverage and readOnly/openWorld annotations handles most completeness burden. The description adds the non-obvious context (Skim provider, rate limiting, x402 payment mechanism, return format as recognized Markdown) without fluff, making it complete for a simple fetch tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with a single url parameter well documented. The description compensates by clarifying the URL must be public, enhancing what the schema format:uri implies with provider expectations (public fetchable content). With full schema coverage and one simple param, baseline is 3 elevated to 4.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clear verb+object ('Fetch... return clean, agent-ready Markdown') plus explicit list of content types (articles, docs, blog posts, READMEs, research papers). Describes what gets stripped vs preserved, which differentiates it meaningfully from siblings like skim_extract and skim_signals.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Clearly states what content it's for and highlights the free-tier rate limit plus paid unmetered option via X-Skim-Wallet-Key. Names the service (Skim 402) giving context on cost/limits, though it doesn't explicitly contrast against skim_extract/skim_signals by name.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
skim_signalsGet a Skim intelligence signal feedARead-onlyInspect
Fetch the latest items from one of Skim's curated intelligence feeds (skim402.com/signals): ai-news, sec-filings, deals, research, campaign-finance, film-incentives, crypto-news, macro, security, regulations, courts, recalls, launches, trending, energy, entertainment, studio-jobs, entity-formations. Returns structured items, newest first. Costs $0.005 USDC per call on Base via x402, paid from the wallet configured in the X-Skim-Wallet-Key connector header — this tool does not work without one.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max items to return (default 50). | |
| signal | Yes | Which signal feed to fetch. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true, so the safety profile is well covered. The description adds value by disclosing the explicit per-call cost ($0.005 USDC), the required X-Skim-Wallet-Key connector header, and that calls fail without one. However, it doesn't describe edge behaviors like rate limiting, pagination beyond the limit parameter, or error responses, leaving some gap given openWorldHint.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a tight two-sentence structure that front-loads the primary purpose in the first sentence, followed by the pricing/authentication caveat. Every clause earns its place, and the enumerated feed list is compactly inline rather than expanded into wasteful prose. Minor room for improvement in structural separation of the caveat, but overall efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a feed-list tool with readOnlyHint=true, complete schema coverage, and no output schema, the description adequately covers the purpose, the pricing model, and the hard authentication requirement. It falls slightly short of a 5 because it doesn't mention expected value shapes of returned items or any ordering/count caveats beyond 'newest first', but it's genuinely complete for the tool's simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema fully documents both parameters (signal enum with all 18 values and limit with min/max/default). The description does not add syntax or format details for the parameters beyond what the schema provides, so the baseline of 3 is appropriate. The schema carries the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description gives a specific verb ('Fetch') plus resource ('Skim's curated intelligence feeds'), names the exact URL (skim402.com/signals), and lists all 18 available signal categories at the call site. It clearly distinguishes this from the sibling tools (skim_extract, skim_read) by framing it as a feed-fetching operation. This is a precise, unambiguous statement of what the tool does.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description states that it fetches 'latest items' from curated feeds and that results are returned 'newest first', giving clear usage context. It does not explicitly state when-not-to-use or name alternatives, though the sibling separation is implicit from the different verbs. It notes the cost per call and hard dependency on a wallet connector, which is valuable pre-usage guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityCmaintenanceWeb search, clean page reading & one-call research dossiers for AI agents. No API key — your agent does the synthesis.Last updated66MIT
- AlicenseAqualityBmaintenanceEnables AI agents to read web pages reliably, returning clean markdown content, hyperlinks, and metadata without navigation or ad noise.Last updated325MIT
- AlicenseAqualityCmaintenanceEnables AI agents to extract clean, structured web content (articles, tables, links, visual layouts) optimized for LLM token efficiency, with fast response times and optional JavaScript support.Last updated545MIT

foundrynet-scrapeofficial
Flicense-qualityAmaintenanceEnables AI agents to extract clean, structured content from any web page via a pay-per-call API or with a Forge key.Last updated
Your Connectors
Sign in to create a connector for this server.