PluginBench
MCP Server
Active

AXF MCP Server

dev.smartergpt/axf

What is the AXF MCP server?

Agent eXoskeleton Framework control plane for workspace-native agent capabilities over MCP.

How to install AXF

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • AXF_WORKSPACE

    Root directory for the AXF workspace. Defaults to current working directory.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "axf": {
      "command": "npx",
      "args": [
        "-y",
        "@smartergpt/axf",
        "mcp"
      ],
      "env": {
        "AXF_WORKSPACE": "<YOUR_AXF_WORKSPACE>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "axf": {
      "command": "npx",
      "args": [
        "-y",
        "@smartergpt/axf",
        "mcp"
      ],
      "env": {
        "AXF_WORKSPACE": "<YOUR_AXF_WORKSPACE>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "axf": {
      "command": "npx",
      "args": [
        "-y",
        "@smartergpt/axf",
        "mcp"
      ],
      "env": {
        "AXF_WORKSPACE": "<YOUR_AXF_WORKSPACE>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "axf": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@smartergpt/axf",
        "mcp"
      ],
      "env": {
        "AXF_WORKSPACE": "<YOUR_AXF_WORKSPACE>"
      }
    }
  }
}
Claude Code
claude mcp add axf --env AXF_WORKSPACE=<YOUR_AXF_WORKSPACE> -- npx -y @smartergpt/axf mcp

Related MCP servers

Lex

Active

Episodic memory and architectural policy for AI agents. Frames, Atlas, and Policy.

0
TypeScript
MIT
View repository →