AgentStack
MCP verified MIT Self-run

Veriglow Agent Map Skill

mcp-chizhongwang-veriglow-agent-map-skill · by ChizhongWang

Teach AI agents to discover hidden APIs, data functions & browser automation recipes for any website. Works with Claude Code, ClawHub, Cursor & any AgentSkills-compatible agent.

No reviews yet
0 installs
9 views
0.0% view→install

Install

$ agentstack add mcp-chizhongwang-veriglow-agent-map-skill

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Veriglow Agent Map Skill? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Teach your AI agent to discover hidden APIs, data functions, and browser automation recipes for any website.


What is VeriGlow Agent Map?

VeriGlow Agent Map is a registry of Agent-readable documentation for websites. Each "map" documents:

| Section | What it tells your agent | |:--------|:------------------------| | Available Data | API endpoints, request parameters, response schemas, curl examples | | Page Internals | JS controllers, DOM selectors, rendering method, auth status | | Agent Reports | Real-world success/failure reports, response times, edge cases |

When this skill is installed, your agent automatically knows how to look up and use these maps.


How It Works


Install

Claude Code

claude plugin install github:ChizhongWang/veriglow-agent-map-skill

Or from the Plugin Marketplace:

/plugin install veriglow-agent-map

OpenClaw (ClawHub)

clawhub install veriglow-agent-map

Cursor / Other Agents

Copy the skills/veriglow-agent-map/ directory into your agent's skills folder.


Usage

The skill activates automatically when your agent needs website data. You can also invoke it explicitly:

/veriglow-agent-map

Example Prompts

| Prompt | What happens | |:-------|:-------------| | "Get the current Bitcoin price" | Looks up CoinPaprika Agent Map, calls GET /v1/tickers/btc-bitcoin | | "What's the weather forecast for Beijing?" | Looks up Open-Meteo Agent Map, calls forecast API with lat/long | | "Get the top 10 Hacker News stories" | Looks up HN Agent Map, fetches topstories.json → item details | | "Get bond trading data from the Shanghai Stock Exchange" | Looks up SSE Agent Map, calls the internal API | | "Find the API behind this web page: https://..." | Queries veri-glow.com/{url} for the map |


Live Example: SSE Bond Data

The skill includes a built-in example — Shanghai Stock Exchange bond trading data.

Direct API Call

curl "https://www.sse.com.cn/js/common/ \
  sseBond498Fixed.js?searchDate=2025-02-11"

Returns 17 bond categories with:

  • Transaction count
  • Face value traded
  • Trading amount

Browser Automation Fallback

// Set date & trigger query
document.querySelector('.js_date input')
  .value = '2025-02-11'
overviewDay.setOverviewDayParams()

// Extract table data
const rows = [...document
  .querySelectorAll('tbody tr')]

For when the API is blocked (e.g., overseas IP).

> View the full map: veri-glow.com/www.sse.com.cn/market/bonddata/overview/day/


Available Maps — 59 Data Sources

| Category | Count | Example | |:---------|------:|:--------| | SSE Stock Data (股票数据) | 18 | IPO, dividends, market cap, P/E ratio, trading activity | | SSE Index Data (指数) | 3 | Index quotation, composition, basic info | | SSE Fund Data (基金数据) | 7 | ETF, LOF, REITs scale, daily/weekly/monthly overview | | SSE Bond Data (债券数据) | 10 | Bond trading, yield, convertible bonds, active varieties | | SSE Other Data (其他数据) | 17 | Margin trading, securities lending, member qualifications | | International APIs | 4 | CoinPaprika (crypto), Open-Meteo (weather), Hacker News |

Browse all 59 maps at veri-glow.com →


Skill Format

This skill follows the AgentSkills open standard and is compatible with:

Claude CodePlugin Marketplace ClawHubOpenClaw Skills CursorAgent Skills Any AgentAgentSkills spec

veriglow-agent-map-skill/
├── .claude-plugin/
│   └── plugin.json          ← Claude Code plugin manifest
├── skills/
│   └── veriglow-agent-map/
│       └── SKILL.md         ← Core skill (cross-platform)
├── assets/
│   ├── banner.svg
│   └── how-it-works.svg
├── LICENSE
└── README.md

License

[MIT](LICENSE) — VeriGlow

Built by VeriGlow — Proof over Promises

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.