the primary interface

MCP server

A Streamable-HTTP, stateless MCP server at POST /mcp. Add one connector and six tools appear inside your runtime: ipnops_search, ipnops_answer, ipnops_extract, ipnops_research, ipnops_research_status, and ipnops_monitor. Each ships an outputSchema, so tool results arrive as typed structure — not text to re-parse.

~/.mcp/config
# one connector — Ipnops becomes an agent tool
{ "ipnops": {
    "transport": "http",
    "url": "https://api.ipnops.ai/mcp"
  } }
tools/list ◂ result
{ "tools": [
  { "name": "ipnops_search", "outputSchema": {…} },
  { "name": "ipnops_answer", "outputSchema": {…} },
  …extract, research, research_status, monitor
] }

A tools/call to answer returns the same AnswerResult shape documented under /answer as structuredContent.