JSPM

  • Created
  • Published
  • Downloads 624
  • Score
    100M100P100Q102655F

MCP server for APUtime

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@aputime/mcp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    APUtime MCP Server

    APUtime Logo

    The APUtime MCP Server allows you to integrate APUtime capabilities directly into various AI assistants and coding environments.

    Usage

    The MCP server is easy to start using npx (requires Node.js):

    npx -y @aputime/mcp@latest

    Configuration

    The server requires specific environment variables to authenticate with your APUtime workspace. You can obtain these from your APUtime settings (https://app.aputime.com/settings/integrations).

    Environment Variables

    • APUTIME_APP_NAME (Required): Your APUtime application name.
    • APUTIME_API_KEY (Required): Your APUtime API key.

    Client Setup Examples

    opencode

    Add the following configuration to your opencode settings:

    {
      "mcp": {
        "aputime": {
          "type": "local",
          "enabled": true,
          "command": [
            "npx",
            "-y",
            "@aputime/mcp@latest"
          ],
          "environment": {
            "APUTIME_APP_NAME": "YOUR_WORKSPACE_NAME",
            "APUTIME_API_KEY": "YOUR_API_TOKEN"
          }
        }
      }
    }

    Zed

    Add the following to your Zed settings.json in the mcp section:

    {
      "mcp": {
        "aputime": {
          "command": "npx",
          "args": [
            "-y",
            "@aputime/mcp@latest"
          ],
          "env": {
            "APUTIME_APP_NAME": "YOUR_WORKSPACE_NAME",
            "APUTIME_API_KEY": "YOUR_API_TOKEN"
          }
        }
      }
    }

    Claude Desktop

    Add the following to your claude_desktop_config.json:

    {
      "mcpServers": {
        "aputime": {
          "command": "npx",
          "args": [
            "-y",
            "@aputime/mcp@latest"
          ],
          "env": {
            "APUTIME_APP_NAME": "YOUR_WORKSPACE_NAME",
            "APUTIME_API_KEY": "YOUR_API_TOKEN"
          }
        }
      }
    }

    Windsurf

    Add the following to your mcp_config.json:

    {
      "mcpServers": {
        "aputime": {
          "command": "npx",
          "args": [
            "-y",
            "@aputime/mcp@latest"
          ],
          "env": {
            "APUTIME_APP_NAME": "YOUR_WORKSPACE_NAME",
            "APUTIME_API_KEY": "YOUR_API_TOKEN"
          }
        }
      }
    }

    LibreChat

    Add the following to your librechat.yaml:

    mcpServers:
      aputime:
        type: stdio
        command: npx
        args:
          - "-y"
          - "@aputime/mcp@latest"
        env:
          APUTIME_APP_NAME: "YOUR_WORKSPACE_NAME"
          APUTIME_API_KEY: "YOUR_API_TOKEN"