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.
Claude Desktop
Section titled “Claude Desktop”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.
Claude Code
Section titled “Claude Code”claude mcp add --transport stdio ausecon -- uvx ausecon-mcp-servercodex mcp add ausecon -- uvx ausecon-mcp-serverCursor
Section titled “Cursor”Add an entry to ~/.cursor/mcp.json, or to the project-level .cursor/mcp.json:
{ "mcpServers": { "ausecon": { "command": "uvx", "args": ["ausecon-mcp-server"] } }}VS Code
Section titled “VS Code”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"] } }}