The unified AI Gateway for logistics, manufacturing, and commercial scale. Integrate top-tier models and execute code securely in the cloud.
A streamlined workflow to get your autonomous agents from concept to production in minutes.
Spin up isolated, stateful MicroVMs in milliseconds. Give your agents a secure environment to execute code and store files.
Equip your agents with capabilities from our Skills Marketplace. Connect to GitHub, databases, or web scrapers instantly.
Select your preferred LLM (Claude, Gemini, OpenAI) and deploy. Monitor activity, logs, and memory in real-time via the dashboard.
Stop stitching together API keys and invoices. NeuralHub provides the complete stack for autonomy.
One interface for OpenAI, Anthropic, Gemini, and 100+ open source models. Switch models with one line of code.
Execute untrusted code securely in millisecond-startup MicroVMs. Perfect for code interpreters and agents.
Integrated vector and object storage for your agents. Give them long-term memory out of the box.
Standardized tools for web browsing, data extraction, and API interactions via Model Context Protocol.
Manage your entire infrastructure from the terminal. TypeScript, Python, and Go SDKs available.
NeuralHub's SDK makes it incredibly simple to spin up isolated environments, attach MCP tools, and deploy autonomous agents with just a few lines of code.
No monthly subscription fees for access. You only pay for the compute and tokens you consume.
Build fault-tolerant agent loops that survive server restarts and timeouts. Powered by Upstash.
import { NeuralHub } from '@neuralhub/sdk';
// Initialize the client
const nh = new NeuralHub(process.env.NH_API_KEY);
async function runAgent() {
// 1. Create an isolated MicroVM
const env = await nh.environments.create({
runtime: 'python-3.10',
tier: 'micro'
});
// 2. Deploy an agent with MCP tools
const agent = await nh.agents.deploy({
model: 'claude-3.5-sonnet',
environmentId: env.id,
tools: ['mcp://github', 'mcp://firecrawl']
});
return agent.execute("Analyze the repo and write tests.");
}