Back to Search
neo_sys_tool_discovery
0.1.0Search the Neonia Gateway for tools, or request new ones if they don't exist.
$0.0 / call (system)
Updated: Apr 30, 2026
Overview
A dynamic skill router that makes your agent truly autonomous.
How it empowers your workflow:
🔍 No More Dead Ends: If you ask the agent to perform a task it doesn't know how to do yet (like analyzing a PDF or checking stock prices), it doesn't fail or hallucinate. It proactively searches the marketplace for the right tool.
⚡ Zero-Setup: Stop manually guessing and configuring dozens of plugins for your workspace. Add just this one meta-tool, and your agent will pull in everything else on the fly.
🧠 Uninterrupted Execution: The agent identifies its missing capability, reads the discovered tool's documentation, and instantly applies it to solve your problem without requiring human intervention.
Give your AI access to the entire Neonia arsenal through a single entry point.
Example Input
JSON payload sent to this tool:
{
"query": "generate random numbers"
}Example Output
Formatted JSON response returned by this tool:
[
{
"name": "neo_util_rng",
"description": "Generates cryptographically secure random sequences.",
"price": 0.0
}
]Setup Configuration
Add the following configuration to your MCP general settings or mcp_config.json:
{
"mcpServers": {
"neonia": {
"serverUrl": "https://mcp.neonia.io/mcp?tools=neo_sys_tool_discovery",
"headers": {
"Authorization": "Bearer API_KEY"
}
}
}
}