Agentic AI server in Rust. Multi-provider LLM routing, tool calling, RAG, MCP, multi-tenant workflows.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"ares": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Agentic Retrieval Enhanced Server. Rust. Multi-provider LLM. Tool calling. RAG. MCP. Extensible via ContextProvider trait. Run standalone or embed as a library.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / maps
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
MCP Security Weekly
Get CVE alerts and security updates for Ares and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Agentic Retrieval Enhanced Server. Rust. Multi-provider LLM. Tool calling. RAG. MCP.
Extensible via ContextProvider trait. Run standalone or embed as a library.
A.R.E.S is a production-grade agentic AI server built in Rust. Multi-provider LLM routing, structured tool calling, RAG, MCP integration, multi-tenant auth, and workflow orchestration. Extensible via ContextProvider trait and base_router() for building managed platforms on top.
Built by DIRMACS. Documentation
A.R.E.S can be used as a standalone server or as a library in your Rust project.
Add to your project:
cargo add ares-server
Basic usage:
use ares::{Provider, LLMClient};
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
// Create an Ollama provider
let provider = Provider::Ollama {
base_url: "http://localhost:11434".to_string(),
model: "llama3.2:3b".to_string(),
};
// Create a client and generate a response
let client = provider.create_client().await?;
let response = client.generate("Hello, world!").await?;
println!("{}", response);
Ok(())
}
# Install from crates.io (basic installation)
cargo install ares-server
# Install with embedded Web UI
cargo install ares-server --features ui
# Initialize a new project (creates ares.toml and config files)
ares-server init
# Run the server
ares-server
A.R.E.S provides a full-featured CLI with colored output:
# Initialize a new project with all configuration files
ares-server init
# Initialize with custom options
ares-server init --provider openai --port 8080 --host 0.0.0.0
# Initialize with minimal configuration
ares-server init --minimal
# View configuration summary
ares-server config
# Validate configuration
ares-server config --validate
# List a
... [View full README on GitHub](https://github.com/dirmacs/ares#readme)