agentsclimarketplace

Mcp api

Skill benmilne-com/agents/skills/mcp-api

Query and search benmilne.com content via MCP REST paths and JSON-RPC tools.From its SKILL.md

Install
npx -y skills add benmilne-com/agents --skill mcp-api

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.4 KB, 351 tokens by cl100k_base, as published. Nobody here has run it

MCP API — benmilne.com

Machine-readable interfaces for autonomous agents integrating with Ben Milne's published archive.

Capabilities

  • Paginated posts: GET https://benmilne.com/mcp/v1/posts
  • Single post: GET https://benmilne.com/mcp/v1/post/{id}
  • Search: GET https://benmilne.com/mcp/v1/search?query=
  • MCP JSON-RPC: POST https://benmilne.com/mcp (initialize, tools/list, tools/call)

Tools

The MCP server exposes 3 tools via tools/list:

  • list_posts — Browse, filter, and paginate all published posts. Supports optional category and tag filters.
  • get_post — Retrieve a single post with full HTML content by numeric ID.
  • search_posts — Full-text search across all published posts by keyword.

Quick start

# List tools
curl -X POST https://benmilne.com/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

# Search for posts about stablecoins
curl -X POST https://benmilne.com/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_posts","arguments":{"query":"stablecoin"}}}'

Notes

Attribution is included in JSON envelopes. Prefer JSON for agents; use Accept: text/markdown on essay routes for prose.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.