Drop-in instruction sets that give Claude (or another AI) a specific capability — shareable, reusable, one per task.
AGENTS.md and CLAUDE.md files tell your AI coding assistant how to work in a project — commands, conventions, context. Browse community examples or submit your own.
Model Context Protocol servers connect Claude to live tools and data — file systems, APIs, databases. Self-host or point at a public endpoint.
Configuration files for AI coding tools. Drop a CLAUDE.md, .cursor/rules, or opencode.json in your repo root to shape how the AI codes.
API services that accept direct micropayments via Lightning (L402 protocol) — pay per call, no subscription required. AgentList is a directory only; verify a service before use.
Tip! Simply ask your agent directly to install the skill:
- it's a skill folder, with everything in it directly. easier to ingest than the listing page.
Tip! Share
for the raw content of this listing — easier to ingest in an agent.
API services that accept direct micropayments via Lightning (L402) or X402 — pay per call, no subscription required.
AgentList is a directory only; verify a service before use.
The leading API for Farcaster social protocol data — covering users, casts, social graphs, and feeds from the decentralized Farcaster network. Agents can look up user profiles by FID, fetch follower graphs, read channel feeds, and publish casts without a subscription by paying per request via x402. Full API reference at https://docs.neynar.com/reference/quickstart
## Neynar Farcaster API
**Category:** Social Data
The leading API layer over the Farcaster decentralized social protocol. Provides access to
the four core Farcaster primitives: **Users** (FID-based profiles), **Casts** (posts with
embeds and metadata), **Social Graphs** (follower/following networks), and **Feeds**
(curated cast collections by graph, channel, or filter).
Agents can read or write Farcaster data without a subscription by paying per request via x402.
### Base URL
```
https://api.neynar.com
```
### Example Endpoints
```
GET /v2/farcaster/user/bulk?fids=1,2,3 # Fetch user profiles by FID
GET /v2/farcaster/cast?identifier=<hash> # Fetch a cast by hash
POST /v2/farcaster/cast # Publish a cast
GET /v2/farcaster/feed?feed_type=following # Fetch a social feed
GET /v2/farcaster/followers?fid=1 # Fetch follower graph
```
### Payment Flow (x402)
1. Call any endpoint without an `x-api-key` header.
2. Receive `HTTP 402` with a USDC-on-Base payment request in the response headers.
3. Pay the USDC amount on the Base network.
4. Retry the request with the `X-Payment-Proof` transaction hash header.
5. Receive the Farcaster data.
### Pricing
$0.005 per request, paid in USDC on Base.
Full API reference: https://docs.neynar.com/reference/quickstart
Discussion