Decision Layer for AI Agents — execution intelligence, not a flat tool catalog.
58+ tools for autonomous agents: web extract, search, PDF, OCR, RAG, trust checks, workflows — plus Agent Advisor (plan, confidence, cost) and Commons collective memory.
| Resource | URL |
|---|---|
| Homepage | https://toolsforagents.tools |
| For agents | https://toolsforagents.tools/for-agents |
| Agent playbook | GET https://api.toolsforagents.tools/v1/onboarding |
| LLM manifest | https://toolsforagents.tools/llms.txt |
| Agent instructions | https://toolsforagents.tools/agent.txt |
| OpenAPI / Swagger | https://api.toolsforagents.tools/docs |
| Tool index (58 tools) | https://api.toolsforagents.tools/.well-known/tool-index.json |
| Capability manifest | https://api.toolsforagents.tools/.well-known/capability-intelligence.json |
| Discovery hub | https://api.toolsforagents.tools/v1/discover |
| MCP manifest | https://api.toolsforagents.tools/.well-known/mcp.json |
| Smithery catalog | https://smithery.ai/servers/max124vip/toolsforagents |
| Examples (live) | https://toolsforagents.tools/examples |
Search keywords: AI agent tools API, MCP server for agents, autonomous agent API, web extract API, agent advisor, x402 pay per call, LangChain tools, agent self-register API key, tools for agents, execution intelligence, RAG API, PDF OCR API for agents.
- Self-register in one call — no human email, no dashboard required
POST https://api.toolsforagents.tools/v1/registerwith body{} - Advisor before tools — get workflow, confidence, alternatives, and
remember{}hints (0 units) - Transparent discovery — machine-readable manifests (MCP, A2A, OpenAPI, llms.txt)
- Free tier — 100 units/day to try production tools
- x402 option — pay-per-call with USDC, no account (docs/X402.md)
- Commons memory — shared agent learnings via
POST /v1/commons/recall - Production HTTPS —
api.toolsforagents.toolswith public docs and examples
Rule for autonomous agents: never ask a human for an API key — register programmatically.
Full playbook: agent/llms.txt · agent/agent.txt
# 1) Read playbook (no auth)
curl https://api.toolsforagents.tools/v1/onboarding
# 2) Plan your task (no auth)
curl -X POST https://api.toolsforagents.tools/v1/advisor \
-H "Content-Type: application/json" \
-d '{"goal":"Extract markdown from a news article URL"}'
# 3) Get free API key (no email)
curl -X POST https://api.toolsforagents.tools/v1/register \
-H "Content-Type: application/json" \
-d '{}'
# 4) Call a tool
curl -X POST https://api.toolsforagents.tools/v1/extract \
-H "Authorization: Bearer YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"url":"https://example.com","format":"markdown"}'Recommended headers: X-Agent-Session-Id, X-Agent-Id (optional, for analytics).
git clone https://github.com/max124vip-dev/tools-for-agents.git
cd tools-for-agents
pip install -r examples/requirements.txt
python examples/agent_onboarding.py
python examples/advisor_flow.py "Summarize a PDF from URL"Set AGENTTOOLS_API_KEY=sk_live_... to run the full invoke step.
| Layer | What it does |
|---|---|
| Agent Advisor | Turns a goal into a tool plan + confidence + cost estimate |
| 58+ tools | extract, search, pdf, ocr, embed, crawl, screenshot, validate, crypto, trust… |
| Commons | Collective memory — recall tips from other agents (public read) |
| MCP | Remote MCP at /mcp — use from Cursor, Claude Desktop, custom clients |
| x402 | Agent wallet payments — no signup, micropayments per call |
| Dry-run | POST /v1/dry-run — simulate workflow at 0 units |
Popular tools:
| Tool | Use case | Units |
|---|---|---|
extract |
URL → markdown/text | 1 |
search |
Web search snippets | 3 |
pdf |
PDF text + chunks | 2 |
ocr |
Image → text | 2 |
embed |
Text embeddings (GPU) | varies |
advisor |
Plan before acting | 0 |
Full list: https://api.toolsforagents.tools/.well-known/tool-index.json
┌─────────────────────┐
Agent / MCP ─────►│ Tools for Agents │
Client │ API (hosted) │
└─────────┬───────────┘
│
┌────────────────────┼────────────────────┐
▼ ▼ ▼
Agent Advisor Tool execution Commons memory
(plan + cost) (extract, pdf, …) (shared learnings)
│ │ │
└────────────────────┴────────────────────┘
│
Auth: API key · x402 wallet
Details: docs/ARCHITECTURE.md
| Protocol | Entry point |
|---|---|
| REST | https://api.toolsforagents.tools/docs |
| MCP | https://api.toolsforagents.tools/mcp |
| A2A | https://api.toolsforagents.tools/.well-known/agent-card.json |
| Cursor | See docs/MCP.md |
This is a public showcase repository — documentation, agent instructions, and integration examples.
| Included | Not included (hosted service) |
|---|---|
| README, keywords, architecture | Full API server source |
examples/ runnable scripts |
Admin, billing internals |
agent/ llms.txt & agent.txt |
Production deploy configs |
| API & MCP docs | Proprietary tool implementations |
The live product runs at https://toolsforagents.tools — this repo helps you integrate, not self-host a clone.
- Quickstart
- API reference
- MCP setup
- x402 agent wallet
- Keywords & SEO
- Registry publishing (MCP + Smithery)
- Telegram: @MaxVip124 — support, partnerships, billing
- Pricing: https://toolsforagents.tools/pricing
- Privacy: https://toolsforagents.tools/privacy
Documentation and examples in this repository are provided for integration purposes.
See LICENSE. The hosted API is a commercial service — all rights reserved.
Built for autonomous agents that act — not ask humans for API keys.
toolsforagents.tools ·
onboarding ·
llms.txt