- Home
- MCP servers
- sysauto Ask
sysauto Ask
- javascript
0
GitHub Stars
javascript
Language
4 months ago
First Indexed
3 weeks ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"rogeriolembo-mcp-api": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"SYSAUTO_API_KEY",
"mcp/sysauto-ask"
],
"env": {
"SYSAUTO_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}You run a lightweight MCP server that taps into the Sonar API to deliver real-time web research to Claude, enabling live internet-style insights within your workflows.
How to use
To use Sysauto Ask MCP Server, connect it to an MCP client and send a conversation payload describing your research query. You provide a sequence of messages with roles such as system, user, and assistant. The server engages the Sonar API to fetch current web results and returns results that your client can present or act on. Use this to empower Claude with up-to-date context from across the web.
Practical usage patterns include starting a conversation with a system prompt that defines goals, followed by user questions. Each user question can request live searches, summarizations, or citations. Your client should pass the messages array to the sysauto_ask tool through the MCP interface and stream back the assistant’s response enriched with live web data.
How to install
Prerequisites: You need Node.js installed on your machine and Docker if you plan to run a container-based setup. You also need an active Sonar API key.
Step 1 — Get the source and install dependencies: Install via cloning the MCP project and installing its dependencies in the sysauto-ask subcomponent.
git clone git@github.com:rogeriolembo/mcp-api.git
cd mcp-api/sysauto-ask
npm install
Step 2 — Obtain a Sonar API key and configure the environment variable SYSAUTO_API_KEY with your key.
export SYSAUTO_API_KEY=YOUR_API_KEY_HERE
Step 3 — Configure Claude Desktop to use Sysauto Ask MCP Server. You can run via Docker or with NPX as described.
{
"mcpServers": {
"sysauto-ask": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"SYSAUTO_API_KEY",
"mcp/sysauto-ask"
],
"env": {
"SYSAUTO_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}
{
"mcpServers": {
"sysauto-ask": {
"command": "npx",
"args": [
"-y",
"@rogeriolembo/server-sysauto-ask"
],
"env": {
"SYSAUTO_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}
Available tools
sysauto_ask
Engage in a conversation with the Sonar API for live web searches, enabling real-time research results to be incorporated into Claude responses.