Provides real-time web search capabilities, enabling conversations with the Sonar API to retrieve current information from across the web.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@sysauto Ask MCP Serversearch for the latest advancements in quantum computing"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
sysauto Ask MCP Server
An MCP server implementation that integrates the Sonar API to provide Claude with unparalleled real-time, web-wide research.

Tools
sysauto_ask
Engage in a conversation with the Sonar API for live web searches.
Inputs:
messages(array): An array of conversation messages.Each message must include:
role(string): The role of the message (e.g.,system,user,assistant).content(string): The content of the message.
Related MCP server: Search MCP Server
Configuration
Step 1:
Clone this repository:
git clone git@github.com:rogeriolembo/mcp-api.gitNavigate to the sysauto-ask directory and install the necessary dependencies:
cd mcp-api/sysauto-ask && npm installStep 2: Get a Sonar API Key
Sign up for a Sonar API account.
Follow the account setup instructions and generate your API key from the developer dashboard.
Set the API key in your environment as
sysauto_API_KEY.
Step 3: Configure Claude Desktop
Download Claude desktop here.
Add this to your
claude_desktop_config.json:
{
"mcpServers": {
"sysauto-ask": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"SYSAUTO_API_KEY",
"mcp/sysauto-ask"
],
"env": {
"SYSAUTO_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}NPX
{
"mcpServers": {
"sysauto-ask": {
"command": "npx",
"args": [
"-y",
"@rogeriolembo/server-sysauto-ask"
],
"env": {
"SYSAUTO_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}npm publish --access public npm publish