Search
The open web: search it, read a page from it
Calling it
Metered methods answer an unauthenticated call with 402 and an x402 challenge — pay it and the same request succeeds, with no account at all. A token works too.
curl -H "Authorization: Bearer $MU_TOKEN" \ https://mu-mcp.yvangodard.me/api/v1/web/list
Methods
GET /api/v1/web/fetchFetch a web page by URL and return its cleaned readable content, stripping ads, popups and navigation. Needs an account
| Argument | Type | Description |
|---|---|---|
url * | string | The URL to fetch |
curl \ "https://mu-mcp.yvangodard.me/api/v1/web/fetch?url=url"
2 credits
GET /api/v1/web/searchSearch the web for current information and news
| Argument | Type | Description |
|---|---|---|
query * | string | Search query |
limit | number | Optional max number of results |
curl \ -H "Authorization: Bearer $MU_TOKEN" \ "https://mu-mcp.yvangodard.me/api/v1/web/search?query=query"
The same methods are tools over MCP, and every service on this instance is in one reference. Same method, same answer, same price.


