actionai-mcp


Nameactionai-mcp JSON
Version 1.0.0 PyPI version JSON
download
home_pageNone
SummaryActionAI MCP HTTP client for Claude Desktop and other MCP-compatible applications
upload_time2025-07-15 06:54:48
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords actionai ai assistant claude mcp model-context-protocol
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # ActionAI MCP Python Client

ActionAI MCP HTTP client for Claude Desktop and other MCP-compatible applications.

## Installation

### Using uvx (Recommended)

```bash
# Test connection
uvx actionai-mcp --test

# Use with environment variables
MCP_SERVER_URL=http://localhost:8089/mcp ACTIONAI_API_KEY=client-access-key-2024 uvx actionai-mcp --test
```

### Using pip

```bash
pip install actionai-mcp
actionai-mcp --test
```

## Configuration

### Environment Variables

- `MCP_SERVER_URL`: URL of the ActionAI MCP HTTP service (default: `http://localhost:8089/mcp`)
- `MCP_TIMEOUT`: Request timeout in seconds (default: `30`)
- `ACTIONAI_API_KEY`: API key for ActionAI service authentication (default: `client-access-key-2024`)

### Claude Desktop Configuration

Add this to your Claude Desktop MCP configuration:

```json
{
  "mcpServers": {
    "actionai-mcp": {
      "command": "uvx",
      "args": ["actionai-mcp"],
      "env": {
        "MCP_SERVER_URL": "http://localhost:8089/mcp",
        "ACTIONAI_API_KEY": "client-access-key-2024"
      }
    }
  }
}
```

### Augment Code Configuration

Add this to your Augment Code MCP configuration:

```json
{
  "mcpServers": {
    "actionai-mcp": {
      "command": "uvx",
      "args": ["actionai-mcp"],
      "env": {
        "MCP_SERVER_URL": "http://localhost:8089/mcp",
        "ACTIONAI_API_KEY": "client-access-key-2024"
      }
    }
  }
}
```

### Cursor Configuration

Add this to your Cursor MCP configuration:

```json
{
  "mcpServers": {
    "actionai-mcp": {
      "command": "uvx",
      "args": ["actionai-mcp"],
      "env": {
        "MCP_SERVER_URL": "http://localhost:8089/mcp",
        "ACTIONAI_API_KEY": "client-access-key-2024"
      }
    }
  }
}
```

## Usage

### Test Connection

```bash
# Test with default settings
uvx actionai-mcp --test

# Test with custom URL
uvx actionai-mcp http://localhost:8089/mcp --test

# Test with environment variables
MCP_SERVER_URL=http://localhost:8089/mcp uvx actionai-mcp --test
```

### Command Line Options

```bash
uvx actionai-mcp --help
```

Options:
- `--test, -t`: Test connection to MCP server
- `--version, -v`: Show version information
- `--help, -h`: Show help message

## Development

### Local Development

```bash
# Clone the repository
git clone https://github.com/your-org/actionai-mcp-client.git
cd actionai-mcp-client/mcp/python-package

# Install in development mode
pip install -e .

# Test
actionai-mcp --test
```

### Publishing

```bash
# Build the package
python -m build

# Upload to PyPI
python -m twine upload dist/*
```

## License

MIT License - see LICENSE file for details.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "actionai-mcp",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "actionai, ai, assistant, claude, mcp, model-context-protocol",
    "author": null,
    "author_email": "ActionAI Team <support@actionai.com>",
    "download_url": "https://files.pythonhosted.org/packages/38/29/b7c278114db78cfbdea7d8a65e91abfa7fedb66e85e564ca6d37e68c9a36/actionai_mcp-1.0.0.tar.gz",
    "platform": null,
    "description": "# ActionAI MCP Python Client\n\nActionAI MCP HTTP client for Claude Desktop and other MCP-compatible applications.\n\n## Installation\n\n### Using uvx (Recommended)\n\n```bash\n# Test connection\nuvx actionai-mcp --test\n\n# Use with environment variables\nMCP_SERVER_URL=http://localhost:8089/mcp ACTIONAI_API_KEY=client-access-key-2024 uvx actionai-mcp --test\n```\n\n### Using pip\n\n```bash\npip install actionai-mcp\nactionai-mcp --test\n```\n\n## Configuration\n\n### Environment Variables\n\n- `MCP_SERVER_URL`: URL of the ActionAI MCP HTTP service (default: `http://localhost:8089/mcp`)\n- `MCP_TIMEOUT`: Request timeout in seconds (default: `30`)\n- `ACTIONAI_API_KEY`: API key for ActionAI service authentication (default: `client-access-key-2024`)\n\n### Claude Desktop Configuration\n\nAdd this to your Claude Desktop MCP configuration:\n\n```json\n{\n  \"mcpServers\": {\n    \"actionai-mcp\": {\n      \"command\": \"uvx\",\n      \"args\": [\"actionai-mcp\"],\n      \"env\": {\n        \"MCP_SERVER_URL\": \"http://localhost:8089/mcp\",\n        \"ACTIONAI_API_KEY\": \"client-access-key-2024\"\n      }\n    }\n  }\n}\n```\n\n### Augment Code Configuration\n\nAdd this to your Augment Code MCP configuration:\n\n```json\n{\n  \"mcpServers\": {\n    \"actionai-mcp\": {\n      \"command\": \"uvx\",\n      \"args\": [\"actionai-mcp\"],\n      \"env\": {\n        \"MCP_SERVER_URL\": \"http://localhost:8089/mcp\",\n        \"ACTIONAI_API_KEY\": \"client-access-key-2024\"\n      }\n    }\n  }\n}\n```\n\n### Cursor Configuration\n\nAdd this to your Cursor MCP configuration:\n\n```json\n{\n  \"mcpServers\": {\n    \"actionai-mcp\": {\n      \"command\": \"uvx\",\n      \"args\": [\"actionai-mcp\"],\n      \"env\": {\n        \"MCP_SERVER_URL\": \"http://localhost:8089/mcp\",\n        \"ACTIONAI_API_KEY\": \"client-access-key-2024\"\n      }\n    }\n  }\n}\n```\n\n## Usage\n\n### Test Connection\n\n```bash\n# Test with default settings\nuvx actionai-mcp --test\n\n# Test with custom URL\nuvx actionai-mcp http://localhost:8089/mcp --test\n\n# Test with environment variables\nMCP_SERVER_URL=http://localhost:8089/mcp uvx actionai-mcp --test\n```\n\n### Command Line Options\n\n```bash\nuvx actionai-mcp --help\n```\n\nOptions:\n- `--test, -t`: Test connection to MCP server\n- `--version, -v`: Show version information\n- `--help, -h`: Show help message\n\n## Development\n\n### Local Development\n\n```bash\n# Clone the repository\ngit clone https://github.com/your-org/actionai-mcp-client.git\ncd actionai-mcp-client/mcp/python-package\n\n# Install in development mode\npip install -e .\n\n# Test\nactionai-mcp --test\n```\n\n### Publishing\n\n```bash\n# Build the package\npython -m build\n\n# Upload to PyPI\npython -m twine upload dist/*\n```\n\n## License\n\nMIT License - see LICENSE file for details.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "ActionAI MCP HTTP client for Claude Desktop and other MCP-compatible applications",
    "version": "1.0.0",
    "project_urls": {
        "Homepage": "https://github.com/your-org/actionai-mcp-client",
        "Issues": "https://github.com/your-org/actionai-mcp-client/issues",
        "Repository": "https://github.com/your-org/actionai-mcp-client.git"
    },
    "split_keywords": [
        "actionai",
        " ai",
        " assistant",
        " claude",
        " mcp",
        " model-context-protocol"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "65545ea5220cc7f5af2235e6dadf51782f9fe3d36dd4e76bb87acdfadebe6109",
                "md5": "b6b92164989b15ec9df2f7487f7d8b01",
                "sha256": "48ed7cfc59ced12326773af41cd1581574f41a7564b9b7d72243b0790c834c05"
            },
            "downloads": -1,
            "filename": "actionai_mcp-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b6b92164989b15ec9df2f7487f7d8b01",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 5281,
            "upload_time": "2025-07-15T06:54:46",
            "upload_time_iso_8601": "2025-07-15T06:54:46.626963Z",
            "url": "https://files.pythonhosted.org/packages/65/54/5ea5220cc7f5af2235e6dadf51782f9fe3d36dd4e76bb87acdfadebe6109/actionai_mcp-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3829b7c278114db78cfbdea7d8a65e91abfa7fedb66e85e564ca6d37e68c9a36",
                "md5": "5f02d9fe4641abf8538b132778077cb2",
                "sha256": "ab40159db248c5bcdc4a2053c0456fa0b71c6ebfb39bf877c80bd15918c4476f"
            },
            "downloads": -1,
            "filename": "actionai_mcp-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "5f02d9fe4641abf8538b132778077cb2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 106448,
            "upload_time": "2025-07-15T06:54:48",
            "upload_time_iso_8601": "2025-07-15T06:54:48.342759Z",
            "url": "https://files.pythonhosted.org/packages/38/29/b7c278114db78cfbdea7d8a65e91abfa7fedb66e85e564ca6d37e68c9a36/actionai_mcp-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-15 06:54:48",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "your-org",
    "github_project": "actionai-mcp-client",
    "github_not_found": true,
    "lcname": "actionai-mcp"
}
        
Elapsed time: 1.07947s