Developer Tools
rohnelt.dev
This MCP server enables agents to create persistent identities, manage credits, and store durable memory.
ENDPOINT 1
https://aura.rohnelt.dev/mcp
MCP server metadata
- Name
- aura
- Version
- 0.1.0
Aura is the persistence layer for ephemeral agents: a permanent email address and webhook URL, durable memory, and the ability to wait for an event or park state and exit without burning tokens. Start by calling capabilities. If you do not have a token yet, call identity_create with your wallet address and an EIP-191 signature; it is free and returns a real email address you can use to sign up for third-party services. Prefer await over polling: it blocks on one call and costs nothing while it waits, and it refunds itself if nothing arrives. Call resume at the start of every run — it is free when there is nothing to resume.
Known tools 16
capabilitiesReturn the full machine-readable manifest of Aura: every operation, its price in USD, its input schema and how to pay.
Potential side effectsidentity_createTurn a wallet address into a permanent agent identity: a handle, a REAL email address that receives mail, a webhook URL, and an API token.
Potential side effectswhoamiReturn your handle, email address, webhook base URL, current balance and quota usage.
Potential side effectsinbox_readReturn the full parsed body of one message, plus any verification code or confirmation link found in it.
Potential side effectsawaitBlock on an open HTTP connection until a trigger fires — an email arrives, a webhook is hit, another agent signals you, or a deadline passes.
Potential side effectsCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.aura]
url = "https://aura.rohnelt.dev/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"aura": {
"type": "http",
"url": "https://aura.rohnelt.dev/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: aura
Remote MCP URL: https://aura.rohnelt.dev/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"aura": {
"url": "https://aura.rohnelt.dev/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"aura": {
"type": "http",
"url": "https://aura.rohnelt.dev/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "aura",
"transport": "streamable-http",
"url": "https://aura.rohnelt.dev/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
ENDPOINT 2
https://kortex.rohnelt.dev/mcp
MCP server metadata
- Name
- kortex
- Version
- 0.1.0
Kortex tells an agent which x402 service actually works, from evidence: uptime measured over time, a valid 402, and settlements proven on-chain. Start by calling capabilities. If you do not have a token yet, call identity_create with your wallet address and an EIP-191 signature; it is free. Before paying an x402 service you have not used, call check with its URL. Before choosing one at all, call resolve with what you need in plain language. After you pay anything, call report. It is free, it is verified against the chain, and it is what makes every later verdict better.
Known tools 10
capabilitiesReturn the full machine-readable manifest of Kortex: every operation, its price in USD, its input schema and how to pay.
Potential side effectsidentity_createTurn a wallet address into a permanent Kortex identity and an API token.
Inferred read-onlyresolveDescribe what you need in plain language and get back x402 services ranked by evidence: how much of the time they have been up, whether they answer with a valid 402, and how many distinct wallets have actually paid them on-chain.
Inferred read-onlycheckEverything Kortex knows about a single resource URL: whether it is up, whether its 402 is well formed, what it quotes, and whether its payout address has ever been paid on-chain.
Inferred read-onlycompareScore two or more resource URLs side by side on the same evidence, and say which one to pay.
Potential side effectshistoryThe full time series behind a score: every probe outcome, every price and payout-address change, and the on-chain settlement history of the address it pays to.
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.kortex]
url = "https://kortex.rohnelt.dev/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"kortex": {
"type": "http",
"url": "https://kortex.rohnelt.dev/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: kortex
Remote MCP URL: https://kortex.rohnelt.dev/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"kortex": {
"url": "https://kortex.rohnelt.dev/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"kortex": {
"type": "http",
"url": "https://kortex.rohnelt.dev/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "kortex",
"transport": "streamable-http",
"url": "https://kortex.rohnelt.dev/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
ENDPOINT 3
https://vortex.rohnelt.dev/mcp
MCP server metadata
- Name
- vortex
- Version
- 0.1.0
Vortex tells a buying agent whether a store can actually deliver to its destination, and what the order really costs once it lands there. Start by calling capabilities. If you do not have a token yet, call identity_create with your wallet address and an EIP-191 signature; it is free. Before paying an x402 service you have not used, call check with its URL. Before choosing one at all, call resolve with what you need in plain language. After you pay anything, call report. It is free, it is verified against the chain, and it is what makes every later verdict better.
Known tools 10
capabilitiesReturn the full machine-readable manifest of Vortex: every operation, its price in USD, its input schema and how to pay.
Potential side effectsidentity_createTurn a wallet address into a permanent Vortex identity and an API token.
Inferred read-onlyfindSearch real storefronts for a product and get back only the ones that can ship to your destination, with live price and stock.
Inferred read-onlyfeasibilityEverything Vortex knows about whether one storefront can serve one destination: its published shipping zones, the currency it charges in, the cards it takes, what buyers reported, and whether its reach changed recently.
Inferred read-onlylandedItem plus shipping plus import tax plus local tax, itemised, for a destination — and the name and effective date of the tax rule applied.
Inferred read-onlyhistoryThe recorded price and stock series for a product, where today sits against its own record, how often it has gone out of stock, and every change to where its store ships.
Inferred read-onlywatchRegister standing interest in a product or a store: a price drop below your threshold, a return to stock, or a store that stops shipping to your destination.
Potential side effectsCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.vortex]
url = "https://vortex.rohnelt.dev/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"vortex": {
"type": "http",
"url": "https://vortex.rohnelt.dev/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: vortex
Remote MCP URL: https://vortex.rohnelt.dev/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"vortex": {
"url": "https://vortex.rohnelt.dev/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"vortex": {
"type": "http",
"url": "https://vortex.rohnelt.dev/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "vortex",
"transport": "streamable-http",
"url": "https://vortex.rohnelt.dev/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Loading Trust v2 evidence…
Checking the associated registrable domain. The BuiltWith key remains server-side.
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.