Sign in or create an account to start building
Saved projects, prompt templates, and active AI applications.
Robinhood Chain EVM & Solana Network smart contract, RPC connection, & Web3 development tools.
Centralized Model Context Protocol (MCP) Portal endpoint built according to Cloudflare One Access Controls Specification.
portal_list_servers, portal_toggle_single_server, portal_query_toolsrobinhood_get_block, robinhood_get_balance, blockscout_verify_status, d1_query_databaserobinhood_get_block, robinhood_get_balanceblockscout_verify_statusSpecialized agent personas for cyber defense, pentesting, and auditing.
Pre-engineered prompt templates for Robinhood EVM smart contracts & Solana Web3 Anchor development.
Extend your AI models with custom agentic skills, MCP tools, and automated Rust/EVM workflows.
Import official Solana Foundation skills directly from GitHub:
Configure your custom API Keys for direct model invocation.
Previous chat sessions and saved AI applications with unique session IDs.
Are you sure you want to delete this session?
Copy production-ready code snippets to call OpenFlare AI with your current parameters.
Help us improve OpenFlare AI models by identifying issues:
Explore, compare, and select from our suite of frontier AI models, Workers AI open-weights, and multimodal vision engines.
Create a single endpoint for multiple MCP (Model Context Protocol) servers. Server portals help to streamline visibility and security of your AI infrastructure.
Create, manage, and observe tools from a single endpoint. Portals allow you to enforce strong authentication and streamline visibility of your AI infrastructure.
| Portal Name | Endpoint URL | Linked Servers | Status | Actions |
|---|---|---|---|---|
|
Cloudflare One Native MCP Portal
OpenFlare Primary Edge Portal
|
https://app.openflare.fun/api/mcp | 4 Servers Linked | ● Active Ready |
| Server Name | Upstream URL | Tools Available | Status |
|---|---|---|---|
| Robinhood Chain EVM RPC | https://rpc.mainnet.chain.robinhood.com | robinhood_get_block, robinhood_get_balance |
● Ready |
| Robinhood Blockscout Explorer | https://robinhoodchain.blockscout.com | blockscout_verify_status |
● Ready |
| Cloudflare D1 Database (robinhood-db) | https://app.openflare.fun/api/mcp/d1 | d1_query_database |
● Ready |
|
Official Solana MCP Server
Streamable HTTP
Program autofixer: Anchor + Pinocchio
|
https://mcp.solana.com/mcp |
solana_program_autofixer
solana_anchor_build
solana_pinocchio_optimizer
solana_get_balance
solana_get_latest_block
|
● Ready (5 Tools) |
I have built the web application according to your requirements:
You can toggle between Preview mode to interact with the live running website or Code mode to edit the source files!
import React, { useState } from 'react';
export default function App() {
const [count, setCount] = useState(0);
const handleIncrement = () => setCount(count + 1);
return (
<div className="app-container">
<h1>Okuro - Shared Liquidity Layer</h1>
<p>One Liquidity Layer for Every DeFi Market on Robinhood EVM Chain.</p>
<button onClick={handleIncrement}>
Liquidity Pools Interacted: {count}
</button>
</div>
);
}