HelpAI usedocuments.
Give AI what it needs to read, understand, and work with the content you already have.
Integrate with your existing tools
Plug the platform directly into VS Code, IntelliJ IDEA, OpenCode, and other editors that speak MCP.
{
"mcp": {
"servers": {
"unblob": {
"command": "npx",
"args": ["@unblob-ai/mcp"],
"env": {
"UNBLOB_API_KEY": "your-api-key"
}
}
}
}
}Build on top of the API
We provide a RESTful API and maintain SDKs for several languages so you can integrate all the things.
import { createClient } from "./lib/api/generated/client";
import { explainContent, extractContent } from "./lib/api/generated/sdk.gen";
const client = createClient({
baseUrl: "https://unblob.ai",
});
const page = await extractContent({
client,
body: { url: "https://example.com/pricing" },
responseStyle: "data",
throwOnError: true,
});
const brief = await explainContent({
client,
body: { url: "https://example.com/pricing" },
responseStyle: "data",
throwOnError: true,
});
await searchIndex.upsert({
id: "pricing-page",
body: page.markdown,
summary: brief.markdown,
words: page.word_count,
});