Remote HTTP

Pre-tested Argus MCP backend configurations for remote http servers.

Exa Search (remote HTTP)

View on GitHub

Semantic web search powered by Exa AI. Connects to the hosted Exa MCP endpoint via HTTP with Bearer token authentication.

name: "Exa Search (remote HTTP)"
description: "Semantic web search powered by Exa AI. Connects to the hosted Exa MCP endpoint via HTTP with Bearer token authentication."
# Secrets: EXA_API_KEY — set with: argus-mcp secrets set EXA_API_KEY <your-exa-api-key>
# Get key at: https://dashboard.exa.ai/api-keys
# Remote alternative to the local exa-container entry — no Docker required

exa-remote:
  type: streamable-http
  url: "https://mcp.exa.ai/mcp"
  headers:
    Authorization: "Bearer ${EXA_API_KEY}"

Linear (remote HTTP)

View on GitHub

Manage Linear issues, projects, and teams via the official Linear hosted MCP server. Connects via HTTP with Bearer token authentication.

name: "Linear (remote HTTP)"
description: "Manage Linear issues, projects, and teams via the official Linear hosted MCP server. Connects via HTTP with Bearer token authentication."
# Secrets: LINEAR_API_KEY — set with: argus-mcp secrets set LINEAR_API_KEY <your-linear-api-key>
# Get key at: https://linear.app/settings/api
# Remote alternative to the local linear subprocess entry — no local package install required

linear-remote:
  type: streamable-http
  url: "https://mcp.linear.app/sse"
  headers:
    Authorization: "Bearer ${LINEAR_API_KEY}"

PlantUML MCP Server (remote streamable-HTTP)

View on GitHub

Generate UML diagrams from text descriptions using the PlantUML MCP server hosted on Smithery. No authentication required.

name: "PlantUML MCP Server (remote streamable-HTTP)"
description: "Generate UML diagrams from text descriptions using the PlantUML MCP server hosted on Smithery. No authentication required."

plantuml:
  type: streamable-http
  url: https://smithery.ai/servers/infobip/plantuml-mcp-server

Semgrep (remote streamable-HTTP)

View on GitHub

Static analysis and security scanning via Semgrep's hosted MCP endpoint. Requires a Semgrep API token.

name: "Semgrep (remote streamable-HTTP)"
description: "Static analysis and security scanning via Semgrep's hosted MCP endpoint. Requires a Semgrep API token."

semgrep:
  type: streamable-http
  url: https://mcp.semgrep.ai/mcp
  headers:
    Authorization: "Bearer ${SEMGREP_TOKEN}"

Want to add a configuration? See the contributing guide.