Skip to content

Client Setup

This repository currently provides a local stdio MCP server. Remote HTTP-based MCP connector setups require a separately hosted HTTP service and are out of scope for version 1.0.0.

Use this shape in Claude Desktop’s MCP configuration:

{
"mcpServers": {
"ausecon": {
"command": "uvx",
"args": ["ausecon-mcp-server"]
}
}
}

The repository includes the same example at examples/claude_desktop_config.json.

Terminal window
claude mcp add --transport stdio ausecon -- uvx ausecon-mcp-server
Terminal window
codex mcp add ausecon -- uvx ausecon-mcp-server

Add an entry to ~/.cursor/mcp.json, or to the project-level .cursor/mcp.json:

{
"mcpServers": {
"ausecon": {
"command": "uvx",
"args": ["ausecon-mcp-server"]
}
}
}

Add an entry to .vscode/mcp.json in your workspace, or the user-level equivalent:

{
"servers": {
"ausecon": {
"type": "stdio",
"command": "uvx",
"args": ["ausecon-mcp-server"]
}
}
}