Sysauto Ask
STDIOMCP server integrating Sonar API for Claude's real-time web research capabilities.
MCP server integrating Sonar API for Claude's real-time web research capabilities.
An MCP server implementation that integrates the Sonar API to provide Claude with unparalleled real-time, web-wide research.
messages
(array): An array of conversation messages.
role
(string): The role of the message (e.g., system
, user
, assistant
).content
(string): The content of the message.Clone this repository:
git clone [email protected]:rogeriolembo/mcp-api.git
Navigate to the sysauto-ask
directory and install the necessary dependencies:
cd mcp-api/sysauto-ask && npm install
sysauto_API_KEY
.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" } } } }
{ "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