Neureus is a Streamable HTTP MCP server (spec 2024-11-05). Connect Claude Desktop, Cursor, Zed, or any MCP-compatible AI assistant — they can call Neureus tools without you writing glue code.
https://app.neureus.ai/mcp Streamable HTTP · JSON-RPC 2.0 · spec 2024-11-05 Add to ~/.config/claude/claude_desktop_config.json
{
"mcpServers": {
"neureus": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-http",
"https://app.neureus.ai/mcp"
],
"env": {
"AUTHORIZATION": "Bearer nr_your_api_key"
}
}
}
} Connect directly to the Streamable HTTP endpoint:
// In your MCP client config:
{
"type": "http",
"url": "https://app.neureus.ai/mcp",
"headers": {
"Authorization": "Bearer nr_your_api_key"
}
}
// Test with curl:
curl -X POST https://app.neureus.ai/mcp \
-H "Authorization: Bearer nr_your_key" \
-H "Content-Type: application/json" \
-d '{ "jsonrpc": "2.0", "method": "tools/list", "id": 1 }' Once connected, your AI assistant can call any of these tools by name. No additional setup required.
After connecting Neureus to Claude Desktop, you can ask Claude to use your Neureus tenant's data directly.
neureus_rag_query({ query: "Q2 pricing strategy", topK: 10 }) → 10 relevant chunks from your docs neureus_chat({ model: "claude-sonnet-4-6", messages: ["...chunks...", "write a one-page summary"] }) → professional summary nr_api_keys D1 lookup. Never from request body.Connect Claude, Cursor, or Zed to your Neureus tenant. All plans include MCP access.