Skip to content

Search API

Our Search API helps you find relevant sources on the web and retrieve their content. You can also optionally submit feedback on relevance — which we genuinely appreciate, as it helps us improve results over time.

Search is available via both HTTP and an MCP server.

Use the snippets below as drop-in examples to test the full search end-to-end.

{
"mcpServers": {
"keenable": {
"command": "npx",
"args": ["-y", "@keenable/mcp-server"]
}
}
}

The Keenable MCP server is available in two modes:

  • Stdio Mode: Runs a local MCP server via npx @keenable/mcp-server. The server communicates with your MCP client through standard input/output.
  • Remote Mode: Connects directly to our hosted MCP server at https://api.keenable.ai/mcp. No local installation required.

Both modes offer the same functionality. Choose stdin for local control or remote for zero-setup convenience.

You can use the unauthenticated configurations to quickly test functionality before signing in, though request rates will be limited. For full functionality, sign in to Keenable AI and provide your API key.

{
"mcpServers": {
"keenable": {
"command": "npx",
"args": ["-y", "@keenable/mcp-server"]
}
}
}
{
"mcpServers": {
"keenable": {
"url": "https://api.keenable.ai/mcp"
}
}
}
Loading...
Loading...
Loading...