01
Add the connector
In ChatGPT or Claude's custom connector settings, add a new connector and paste https://mcp.crawlora.net/mcp as the server URL.
Entwickler-Leitfäden
Verbinde MCP-fähige Clients und agent-native Workflows mit Crawloras gehostetem Streamable-HTTP-Endpoint für strukturierte Tools rund um öffentliche Webdaten.
Gehosteter MCP-Endpoint
https://mcp.crawlora.net/mcp
Verbindung
URL: https://mcp.crawlora.net/mcp
Transport: Streamable HTTP
Auth header: Authorization: Bearer $CRAWLORA_API_KEY
Server card: https://crawlora.net/.well-known/mcp/server-card.jsonMCP-URL
https://mcp.crawlora.net/mcp
Transport
Streamable HTTP
Auth-Header
Authorization: Bearer
Crawlora stellt einen gehosteten MCP-Endpoint unter https://mcp.crawlora.net/mcp bereit. Konfiguriere MCP-fähige Clients mit Streamable-HTTP-Transport und übergib denselben serverseitigen Crawlora-API-Key als Authorization: Bearer. Der MCP-Endpoint akzeptiert auch x-api-key für Clients, die benutzerdefinierte Header unterstützen.
Entwickler-Workflow
MCP ermöglicht KI-Clients, Tools zu entdecken und aufzurufen, die ein Server bereitstellt. Crawloras agent-native APIs passen zu diesem Modell, weil unterstützte Endpoints klare Eingaben und strukturierte JSON-Ausgaben haben.
Entwickler-Workflow
Entwickler-Workflow
Nutze den gehosteten Endpoint direkt, wenn dein Client entfernte Streamable-HTTP-MCP-Server unterstützt.
Entwickler-Workflow
Nutze diese Werte in MCP-fähigen Hosts. Halte den API-Key außerhalb von modellsichtbaren Prompts und Browser-Code.
01
In ChatGPT or Claude's custom connector settings, add a new connector and paste https://mcp.crawlora.net/mcp as the server URL.
02
The client fetches the endpoint's protected-resource metadata, follows it to Crawlora's authorization server at https://crawlora.net, and registers itself with Dynamic Client Registration — no manual client setup or API key entry.
03
You're redirected to sign in to your Crawlora account (or use an existing session) and approve the connector on a consent screen. No API key is ever pasted into the client.
04
The client stores and refreshes its own access token. Disconnect the connector in ChatGPT or Claude at any time to revoke its access.
Entwickler-Workflow
Use these values in MCP-capable hosts that take a manual API key instead of OAuth. Keep the API key outside model-visible prompts and browser code.
MCP URL: https://mcp.crawlora.net/mcp Transport: Streamable HTTP Authentication: Authorization: Bearer $CRAWLORA_API_KEY Alternate auth: x-api-key: $CRAWLORA_API_KEY Server card: https://crawlora.net/.well-known/mcp/server-card.json
codex mcp add crawlora \ --url https://mcp.crawlora.net/mcp \ --bearer-token-env-var CRAWLORA_API_KEY
{
"mcpServers": {
"crawlora": {
"url": "https://mcp.crawlora.net/mcp",
"transport": "streamable-http",
"headers": {
"Authorization": "Bearer $CRAWLORA_API_KEY"
}
}
}
}curl https://crawlora.net/.well-known/mcp/server-card.json
Entwickler-Workflow
01
Register Crawlora as a remote Streamable HTTP MCP server using the hosted URL.
02
Pass the Crawlora API key as Authorization: Bearer from the MCP client or server-side host. Use x-api-key only when the host supports custom headers but not bearer token configuration.
03
Let the MCP client list available tools and resources before choosing an endpoint.
04
Send only documented inputs for the selected Crawlora tool and cap result sizes where possible.
05
Surface 401, plan, credit, rate-limit, and upstream errors clearly to the agent-native workflow.
Entwickler-Workflow
Entwickler-Workflow
Nutze dieses Muster nur, wenn du einen privaten MCP-Server betreiben musst, der Crawlora-REST-APIs hinter deiner eigenen Richtlinienschicht kapselt.
{
"name": "crawlora_google_search",
"description": "Search public Google results through Crawlora and return normalized JSON.",
"inputSchema": {
"type": "object",
"properties": {
"keyword": { "type": "string" },
"country": { "type": "string" },
"language": { "type": "string" },
"limit": { "type": "number" }
},
"required": ["keyword"]
},
"output": "Crawlora JSON envelope with result items, status, and message fields."
}Entwickler-Workflow
Use this pattern only when you need to run a private MCP server that wraps Crawlora REST APIs behind your own policy layer.
async function callCrawloraTool(args: {
keyword: string;
country?: string;
language?: string;
limit?: number;
}) {
const response = await fetch("https://api.crawlora.net/api/v1/google/search", {
method: "POST",
headers: {
"x-api-key": process.env.CRAWLORA_API_KEY ?? "",
"Content-Type": "application/json",
},
body: JSON.stringify({
keyword: args.keyword,
country: args.country ?? "us",
language: args.language ?? "en",
limit: args.limit ?? 10,
page: 1,
}),
});
if (!response.ok) {
throw new Error(`Crawlora request failed: ${response.status} ${await response.text()}`);
}
return response.json();
}
// Register this handler with the MCP SDK version used by your server.Entwickler-Workflow
Entwickler-Workflow
Nutze Crawlora für strukturierte Workflows mit öffentlichen Webdaten. Kunden sind selbst für die Einhaltung geltender Gesetze, Rechte Dritter, Plattformregeln und der Crawlora-Bedingungen verantwortlich. Halte API-Keys server-side, validiere Eingaben und vermeide das Sammeln oder Speichern unnötiger sensibler Daten.
Crawlora-Bedingungen lesenEntwickler-Workflow
Nutze diese Seiten, um zwischen Endpoint-Discovery, Beispielen, Preisen und Hinweisen zur verantwortungsvollen Nutzung zu wechseln.
Entwickler-Workflow
Häufige Fragen zu diesem Crawlora-Entwickler-Integrationspfad.
Das Model Context Protocol ist ein Muster, um Tools und Ressourcen über eine Server-Schnittstelle für KI-Clients bereitzustellen.
Ja. Nutze den gehosteten Streamable-HTTP-Endpoint unter https://mcp.crawlora.net/mcp mit Authorization: Bearer. Der MCP-Endpoint akzeptiert auch x-api-key für Clients, die benutzerdefinierte Header unterstützen.
Ja. Kapsle gezielte Crawlora-HTTP-Aufrufe hinter serverseitigen MCP-Tools und halte den API-Key in der Server-Umgebung.
Search, Maps, Geocoding, Airbnb, TripAdvisor, Zillow, YouTube, TikTok, App Store, Google Play, Spotify, Spotify Podcasts, Apple Podcasts, Amazon, Product Hunt, Trustpilot und Bewertungs-Endpoints sind nützliche Kandidaten, wenn sie zur Aufgabe deines Agenten passen.
Speichere Keys server-side, beschränke den Tool-Zugriff, validiere Eingaben und vermeide das Loggen von Secrets.
Ja. Tool-Aufrufe, die Crawlora-API-Endpoints auslösen, können gemäß den Abrechnungsregeln des Endpoints Credits verbrauchen.
MCP konzentriert sich auf ein Protokoll, um Tools für Clients bereitzustellen. LangChain-Tools sind Framework-Wrapper innerhalb von LangChain-Workflows.
MCP focuses on a protocol for exposing tools to clients. LangChain tools are framework-level wrappers inside LangChain workflows.
Beginne mit der gehosteten MCP-URL, validiere Authorization: Bearer oder den x-api-key-Fallback und rufe dann ein gezieltes Tool für Search, Reisen, Immobilien, Bewertungen, App-Bewertungen, Podcasts oder Musikkataloge auf.