Asgard's official MCP Server
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"asgard-mcp-server": {
"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.
A local MCP (Model Control Protocol) server that provides a stdio interface to interact with MCP clients like Claude Desktop.
No automated test available for this server. Check the GitHub README for setup instructions.
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
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
Just a Better Chatbot. Powered by Agent & MCP & Workflows.
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.
MCP Security Weekly
Get CVE alerts and security updates for Asgard Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A local MCP (Model Control Protocol) server that provides a stdio interface to interact with MCP clients like Claude Desktop.
This server acts as a proxy that connects to remote MCP-compatible API endpoints and exposes their tool capabilities through a stdio interface compatible with the MCP protocol.
go install github.com/asgard-ai-platform/asgard-mcp-server/cmd/asgard-mcp-server@latest
Alternatively, clone the repo and build manually:
git clone https://github.com/asgard-ai-platform/asgard-mcp-server.git
cd asgard-mcp-server
go build -o asgard-mcp-server ./cmd/asgard-mcp-server
You can also download pre-built binaries from the GitHub Releases page:
Go to the Releases page
Download the appropriate archive for your platform:
asgard-mcp-server_Linux_x86_64.tar.gz for Linuxasgard-mcp-server_Darwin_x86_64.tar.gz for macOS Intelasgard-mcp-server_Darwin_arm64.tar.gz for macOS Apple Siliconasgard-mcp-server_Windows_x86_64.zip for WindowsExtract the archive:
# For Linux/macOS
tar -xzf asgard-mcp-server_*.tar.gz
# For Windows
unzip asgard-mcp-server_*.zip
For macOS users: Remove the quarantine attribute to allow execution:
xattr -d com.apple.quarantine asgard-mcp-server
Make the binary executable (Linux/macOS):
chmod +x asgard-mcp-server
Optionally, move the binary to your PATH:
# Linux/macOS
sudo mv asgard-mcp-server /usr/local/bin/
# Or add to your user's bin directory
mkdir -p ~/bin
mv asgard-mcp-server ~/bin/
Run the server with the required parameters:
asgard-mcp-server --endpoint <endpoint-url> --api-key <api-key>
Example:
asgard-mcp-server --endpoint "https://api.asgard-ai.com/ns/your-asgard-name-space/toolset/your-asgard-toolset-1/manifest" --api-key "YOUR_ASGARD_API_KEY"
The server will:
To use this server with Claude Desktop:
This implementation is based on the MCP (Model Control Protocol) specification using the mcp-go library v0.36.0.
A simple test script is provided to verify that the server is working correctly:
# Make the test script executable
chmod +x test.sh
# Run the test
./test.sh
This project uses Go modules for dependency management. To add a new dependency, use:
go get <dependency>
To update dependencies, use:
go mod tidy