Skip to main content
Glama

Agent Toolbelt

Aktien-Recherche-Tools für KI-Agenten. Finanzdaten in Echtzeit + von Claude synthetisierte Analysen, bereitgestellt als 7 spezialisierte Tools – keine rohen OHLCV-Daten. Plus 20 Utility-Tools für die restliche Arbeit eines Agenten.

Produktions-API: https://agent-toolbelt-production.up.railway.app


Schnellstart

# Get a free API key (1,000 calls/month, no credit card)
curl -X POST 'https://agent-toolbelt-production.up.railway.app/api/clients/register' \
  -H "Content-Type: application/json" \
  -d '{"email": "you@example.com"}'

# Generate a Motley Fool-style investment thesis for any ticker
curl -X POST https://agent-toolbelt-production.up.railway.app/api/tools/stock-thesis \
  -H "Authorization: Bearer atb_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"ticker": "NVDA", "timeHorizon": "3-5 years"}'

Ergibt: bullisches/neutrales/bärisches Urteil, Thesen-Absätze, Hauptstärken, Hauptrisiken, Bewertungsanalyse, Insider-Analyse, Analystenkonsens und worauf beim nächsten Ergebnisbericht zu achten ist.


Related MCP server: agent-utils-mcp

Aktien-Recherche-Tools (7)

LLM-synthetisierte Analysen auf Basis von Live-Finanzdaten von Polygon.io, Finnhub und Financial Modeling Prep.

Tool

Was es tut

Preis

stock-thesis

Vollständige Anlagethese im Motley-Fool-Stil: Urteil + Thesen-Absätze + Stärken + Risiken + Bewertungsanalyse

$0.05/Aufruf

earnings-analysis

Historie der EPS-Übertreffungen/-Verfehlungen, Umsatztrend, Analyse der langfristigen Ertragskonsistenz, Datum der nächsten Quartalszahlen

$0.05/Aufruf

insider-signal

Interpretation von Form 4 – unterscheidet aussagekräftige Käufe am freien Markt von routinemäßigen Verkäufen/Zuteilungen. Signalstärke + Konfidenz

$0.05/Aufruf

valuation-snapshot

KGV, KUV, EV/EBITDA, FCF-Rendite, Eigenkapitalrendite, Margen → Urteil (günstig/fair/teuer) + spezifische Kaufzone

$0.05/Aufruf

bear-vs-bull

„Steelmanned“ 3-Bullen- / 3-Bären-Szenarien mit spezifischen Daten, Netto-Urteil, zentrale Debattenfrage

$0.05/Aufruf

compare-stocks

Direkter Vergleich von 2-3 Ticker-Symbolen. Gewinner + Stärken/Bedenken pro Ticker + ifYouValue-Karte (Wachstum / Wert / Qualität)

$0.05/Aufruf

moat-analysis

Wettbewerbsvorteils-Analyse (Moat) nach Buffett-Art (Marke / Wechselkosten / Netzwerk / Skalierung / IP / Kosten). Breit/schmal/kein + Dauerhaftigkeit

$0.05/Aufruf

Jedes Aktien-Tool gibt einen dataSources-Block mit fetchedAt + Erfolgs-Flags pro Quelle zurück, damit Sie genau wissen, welche Daten der Analyse zugrunde liegen.


Utility-Tools (20)

Allgemeine Agenten-Infrastruktur. Regelbasierte Tools werden mit $0.0001–$0.001/Aufruf berechnet; LLM-gestützte Tools mit $0.005–$0.10/Aufruf.

Tool

Was es tut

Preis

text-extractor

Extrahiert E-Mails, URLs, Telefonnummern, Daten, Währungen, Adressen, Namen aus Texten

$0.0005/Aufruf

token-counter

Zählt Token über 15 LLM-Modelle hinweg mit Kostenschätzungen

$0.0001/Aufruf

schema-generator

JSON-Schema / TypeScript / Zod-Validator aus einfachem Englisch

$0.001/Aufruf

csv-to-json

CSV zu typisiertem JSON mit automatischem Trennzeichen und Typumwandlung

$0.0005/Aufruf

markdown-converter

HTML ↔ Markdown-Konvertierung

$0.0005/Aufruf

url-metadata

Titel, OG-Tags, Favicon, Autor von jeder URL

$0.001/Aufruf

web-summarizer

Abrufen + Zusammenfassen einer URL mit den wichtigsten Punkten

$0.02/Aufruf

regex-builder

Natürliche Sprache → Regex mit JS/Python/TS-Snippets

$0.0005/Aufruf

cron-builder

Zeitplanbeschreibung → Cron-Ausdruck mit Vorschau für den nächsten Ausführungszeitpunkt

$0.0005/Aufruf

address-normalizer

US-Adresse → USPS-Format mit Komponenten-Parsing

$0.0005/Aufruf

color-palette

Farbpaletten mit WCAG-Bewertungen und CSS-Variablen

$0.0005/Aufruf

brand-kit

Vollständiges Brand-Kit — Farben, Typografie, CSS/Tailwind-Token

$0.001/Aufruf

image-metadata-stripper

Entfernen von EXIF/GPS/IPTC/XMP-Metadaten aus Datenschutzgründen

$0.001/Aufruf

meeting-action-items

Aktionspunkte, Entscheidungen, Zusammenfassung aus Besprechungsprotokollen

$0.05/Aufruf

prompt-optimizer

Bewerten und Umschreiben von LLM-Prompts

$0.05/Aufruf

document-comparator

Semantischer Diff zwischen zwei Dokumentversionen

$0.05/Aufruf

contract-clause-extractor

Wichtige Klauseln + Risikohinweise aus Verträgen

$0.10/Aufruf

api-response-mocker

Realistische Mock-Daten aus einem JSON-Schema

$0.0005/Aufruf

dependency-auditor

CVE-Scan für npm/PyPI-Pakete über die OSV-Datenbank

$0.005/Aufruf

context-window-packer

Packen von Inhalten in ein Token-Budget für LLM-Kontext

$0.001/Aufruf


npm SDK + LangChain

npm install agent-toolbelt

Typisierter Client

import { AgentToolbelt } from "agent-toolbelt";

const client = new AgentToolbelt({ apiKey: process.env.AGENT_TOOLBELT_KEY! });

// Stock research
const thesis = await client.stockThesis({ ticker: "NVDA", timeHorizon: "3-5 years" });
const moat = await client.moatAnalysis({ ticker: "AAPL" });
const compare = await client.compareStocks({ tickers: ["NVDA", "AMD"] });

// Utility
const tokens = await client.tokenCounter({ text: myDocument });
const contacts = await client.textExtractor({
  text: emailBody,
  extractors: ["emails", "phone_numbers", "addresses"],
});

LangChain-Integration

import { AgentToolbelt } from "agent-toolbelt";
import { createLangChainTools } from "agent-toolbelt/langchain";
import { createReactAgent } from "@langchain/langgraph/prebuilt";
import { ChatOpenAI } from "@langchain/openai";

const client = new AgentToolbelt({ apiKey: process.env.AGENT_TOOLBELT_KEY! });
const tools = createLangChainTools(client); // 27 ready-to-use DynamicStructuredTools

const agent = createReactAgent({
  llm: new ChatOpenAI({ model: "gpt-4o" }),
  tools,
});

Claude MCP

Verwenden Sie die Aktien-Recherche-Tools (und den Rest des Toolbelts) direkt in Claude Desktop oder Claude Code über das Paket agent-toolbelt-mcp.

Claude Desktop — hinzufügen zu claude_desktop_config.json:

{
  "mcpServers": {
    "agent-toolbelt": {
      "command": "npx",
      "args": ["-y", "agent-toolbelt-mcp"],
      "env": {
        "AGENT_TOOLBELT_KEY": "atb_your_key_here"
      }
    }
  }
}

Claude Code — ein Befehl:

claude mcp add agent-toolbelt -e AGENT_TOOLBELT_KEY=atb_your_key_here -- npx -y agent-toolbelt-mcp

Nach der Installation können Sie Claude Dinge fragen wie: "Gib mir eine vollständige Analyse von NVDA – These, Ertragsqualität, Insider-Aktivität und ob es aktuell günstig ist", und es wird die Tools parallel aufrufen.


Tools programmatisch entdecken

Agenten können alle 27 Tools zur Laufzeit automatisch entdecken:

curl https://agent-toolbelt-production.up.railway.app/api/tools/catalog

Preisgestaltung

Stufe

Preis

Monatliche Aufrufe

Ratenbegrenzung

Kostenlos

$0/Monat

1.000

10/Min

PAYG

Prepaid-Guthaben

unbegrenzt

60/Min

Starter

$29/Monat

50.000

60/Min

Pro

$99/Monat

500.000

300/Min

Enterprise

Benutzerdefiniert

5.000.000

1.000/Min


Integrationen

  • npm SDKnpm install agent-toolbelt — typisierter Client + LangChain-Tools

  • MCPnpx -y agent-toolbelt-mcp — funktioniert mit Claude Desktop und Claude Code

  • OpenAI GPT Actions — OpenAPI-Spezifikation unter /openapi/openapi-gpt-actions.json

  • RapidAPI — gelistet auf dem RapidAPI-Marktplatz

  • Smithery, Glama, PulseMCP, MCP registry — auffindbar in MCP-Verzeichnissen


Lizenz

MIT

Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
1Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    Swiss-army-knife utility MCP server for AI agents. 18 tools for JSON validation/formatting, base64 encode/decode, hash generation, UUID generation, URL parsing, regex testing, markdown↔HTML conversion, text stats, slug generation, datetime conversion, cron parsing, text diffing, CSV↔JSON conversion, and JWT decoding. Zero API Key required
    5
  • A
    license
    Not graded
    quality
    D
    maintenance
    Multi-tool MCP server for AI agents with 29 tools across web scraping, SEO analysis, screenshot and PDF generation, domain intelligence, content extraction, multi-chain EVM blockchain queries, and security toolkit. Free tier available with no auth required.
    33
    1
    MIT

View all related MCP servers

Related MCP Connectors

  • Package intelligence MCP for AI agents — 22 tools, 19 ecosystems, AGPL SDK, free.

  • Free public MCP for AI agents — 193 tools, 44 workflows. No API key.

  • Agent Cost Allocator MCP — multi-tenant LLM cost attribution for chargeback billing. Companion to

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/marras0914/agent-toolbelt'

If you have feedback or need assistance with the MCP directory API, please join our Discord server