amazon-datazone-mcp-server


Nameamazon-datazone-mcp-server JSON
Version 0.1.0 PyPI version JSON
download
home_pageNone
SummaryMCP server for AWS DataZone service - enables LLMs to interact with DataZone for data governance, cataloging, and management
upload_time2025-07-24 04:33:16
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseNone
keywords aws datazone mcp model-context-protocol data-governance data-catalog
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Amazon DataZone MCP Server

[![Python](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
[![Version](https://img.shields.io/badge/version-0.1.0-green.svg)](https://github.com/awslabs/amazon-datazone-mcp-server/releases)
[![License](https://img.shields.io/badge/license-Apache%202.0-green.svg)](LICENSE)
[![MCP](https://img.shields.io/badge/MCP-compatible-purple.svg)](https://modelcontextprotocol.io/)

A high-performance Model Context Protocol (MCP) server that provides seamless integration with Amazon DataZone services. This server enables AI assistants and applications to interact with Amazon DataZone APIs through a standardized interface.

## Features

- **Complete Amazon DataZone API Coverage**: Access all major DataZone operations
- **Type Safety**: Full type hints and validation
- **Production Ready**: Robust error handling and logging
- **MCP Compatible**: Works with any MCP-compatible client

### Supported Operations

| Module | Operations |
|--------|------------|
| **Domain Management** | Create domains, manage domain units, search, policy grants |
| **Project Management** | Create/manage projects, project profiles, memberships |
| **Data Management** | Assets, listings, subscriptions, form types, data sources |
| **Glossary** | Business glossaries, glossary terms |
| **Environment** | Environments, connections, blueprints |

## Installation

```bash
pip install amazon-datazone-mcp-server
```

## Configuration

Configure AWS credentials using the standard AWS methods:
- AWS CLI: `aws configure`
- Environment variables: `AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY`, `AWS_DEFAULT_REGION`
- IAM roles or instance profiles

## Running the Server

The server uses **stdio transport** for secure communication with MCP clients:

```bash
amazon-datazone-mcp-server
```

### Integration with MCP Clients

Configure in your MCP client (e.g., Claude Desktop):

```json
{
  "name": "amazon-datazone-mcp-server",
  "command": "amazon-datazone-mcp-server"
}
```

## Available Tools

The server provides **38 tools** across 5 categories:

### Domain Management
- `get_domain`, `create_domain`, `list_domains`
- `list_domain_units`, `create_domain_unit`
- `add_entity_owner`, `add_policy_grant`
- `search`, `search_types`
- User/group profile management

### Project Management
- `create_project`, `get_project`, `list_projects`
- `create_project_membership`, `list_project_memberships`
- Project profile management

### Data Management
- Asset operations: `get_asset`, `create_asset`, `publish_asset`
- Listing operations: `get_listing`, `search_listings`
- Data source management: `create_data_source`, `start_data_source_run`
- Subscription management: request, accept, get subscriptions
- Form type management

### Glossary Management
- `create_glossary`, `get_glossary`
- `create_glossary_term`, `get_glossary_term`

### Environment Management
- Environment operations: `list_environments`, `get_environment`
- Connection management: `create_connection`, `get_connection`, `list_connections`
- Blueprint operations: list and get blueprints and configurations

**Each tool includes comprehensive parameter documentation and examples accessible through your MCP client.**

## License

Licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details.

## Disclaimer

**This is an unofficial, community-developed project and is not affiliated with, endorsed by, or supported by Amazon Web Services, Inc.**

- AWS and DataZone are trademarks of Amazon.com, Inc. or its affiliates
- Users are responsible for their own AWS credentials, costs, and compliance
- No warranty or support is provided - use at your own risk
- Always follow AWS security best practices

For official Amazon DataZone documentation, visit [Amazon DataZone Documentation](https://docs.aws.amazon.com/datazone/).

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "amazon-datazone-mcp-server",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "aws, datazone, mcp, model-context-protocol, data-governance, data-catalog",
    "author": null,
    "author_email": "AWS Labs <aws-labs@amazon.com>",
    "download_url": "https://files.pythonhosted.org/packages/5d/6e/0997fb13552532bddc31683a8a92c6588c5367ee2aa482e1142d3e00bff6/amazon_datazone_mcp_server-0.1.0.tar.gz",
    "platform": null,
    "description": "# Amazon DataZone MCP Server\n\n[![Python](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)\n[![Version](https://img.shields.io/badge/version-0.1.0-green.svg)](https://github.com/awslabs/amazon-datazone-mcp-server/releases)\n[![License](https://img.shields.io/badge/license-Apache%202.0-green.svg)](LICENSE)\n[![MCP](https://img.shields.io/badge/MCP-compatible-purple.svg)](https://modelcontextprotocol.io/)\n\nA high-performance Model Context Protocol (MCP) server that provides seamless integration with Amazon DataZone services. This server enables AI assistants and applications to interact with Amazon DataZone APIs through a standardized interface.\n\n## Features\n\n- **Complete Amazon DataZone API Coverage**: Access all major DataZone operations\n- **Type Safety**: Full type hints and validation\n- **Production Ready**: Robust error handling and logging\n- **MCP Compatible**: Works with any MCP-compatible client\n\n### Supported Operations\n\n| Module | Operations |\n|--------|------------|\n| **Domain Management** | Create domains, manage domain units, search, policy grants |\n| **Project Management** | Create/manage projects, project profiles, memberships |\n| **Data Management** | Assets, listings, subscriptions, form types, data sources |\n| **Glossary** | Business glossaries, glossary terms |\n| **Environment** | Environments, connections, blueprints |\n\n## Installation\n\n```bash\npip install amazon-datazone-mcp-server\n```\n\n## Configuration\n\nConfigure AWS credentials using the standard AWS methods:\n- AWS CLI: `aws configure`\n- Environment variables: `AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY`, `AWS_DEFAULT_REGION`\n- IAM roles or instance profiles\n\n## Running the Server\n\nThe server uses **stdio transport** for secure communication with MCP clients:\n\n```bash\namazon-datazone-mcp-server\n```\n\n### Integration with MCP Clients\n\nConfigure in your MCP client (e.g., Claude Desktop):\n\n```json\n{\n  \"name\": \"amazon-datazone-mcp-server\",\n  \"command\": \"amazon-datazone-mcp-server\"\n}\n```\n\n## Available Tools\n\nThe server provides **38 tools** across 5 categories:\n\n### Domain Management\n- `get_domain`, `create_domain`, `list_domains`\n- `list_domain_units`, `create_domain_unit`\n- `add_entity_owner`, `add_policy_grant`\n- `search`, `search_types`\n- User/group profile management\n\n### Project Management\n- `create_project`, `get_project`, `list_projects`\n- `create_project_membership`, `list_project_memberships`\n- Project profile management\n\n### Data Management\n- Asset operations: `get_asset`, `create_asset`, `publish_asset`\n- Listing operations: `get_listing`, `search_listings`\n- Data source management: `create_data_source`, `start_data_source_run`\n- Subscription management: request, accept, get subscriptions\n- Form type management\n\n### Glossary Management\n- `create_glossary`, `get_glossary`\n- `create_glossary_term`, `get_glossary_term`\n\n### Environment Management\n- Environment operations: `list_environments`, `get_environment`\n- Connection management: `create_connection`, `get_connection`, `list_connections`\n- Blueprint operations: list and get blueprints and configurations\n\n**Each tool includes comprehensive parameter documentation and examples accessible through your MCP client.**\n\n## License\n\nLicensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details.\n\n## Disclaimer\n\n**This is an unofficial, community-developed project and is not affiliated with, endorsed by, or supported by Amazon Web Services, Inc.**\n\n- AWS and DataZone are trademarks of Amazon.com, Inc. or its affiliates\n- Users are responsible for their own AWS credentials, costs, and compliance\n- No warranty or support is provided - use at your own risk\n- Always follow AWS security best practices\n\nFor official Amazon DataZone documentation, visit [Amazon DataZone Documentation](https://docs.aws.amazon.com/datazone/).\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "MCP server for AWS DataZone service - enables LLMs to interact with DataZone for data governance, cataloging, and management",
    "version": "0.1.0",
    "project_urls": {
        "Changelog": "https://github.com/awslabs/amazon-datazone-mcp-server/blob/main/CHANGELOG.md",
        "Documentation": "https://github.com/awslabs/amazon-datazone-mcp-server/blob/main/docs/",
        "Homepage": "https://github.com/awslabs/amazon-datazone-mcp-server",
        "Issues": "https://github.com/awslabs/amazon-datazone-mcp-server/issues",
        "Repository": "https://github.com/awslabs/amazon-datazone-mcp-server"
    },
    "split_keywords": [
        "aws",
        " datazone",
        " mcp",
        " model-context-protocol",
        " data-governance",
        " data-catalog"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a76d1d56141d164ea52f11770136e0a6a5fb5ffad6b709470143482915544fd",
                "md5": "d7d294d934261a3f3389a78e27728b50",
                "sha256": "80d6a464badfe22ea6bff81176bd7085ce5de030886d5881293b72eb1884c090"
            },
            "downloads": -1,
            "filename": "amazon_datazone_mcp_server-0.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d7d294d934261a3f3389a78e27728b50",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 53502,
            "upload_time": "2025-07-24T04:33:15",
            "upload_time_iso_8601": "2025-07-24T04:33:15.058669Z",
            "url": "https://files.pythonhosted.org/packages/8a/76/d1d56141d164ea52f11770136e0a6a5fb5ffad6b709470143482915544fd/amazon_datazone_mcp_server-0.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5d6e0997fb13552532bddc31683a8a92c6588c5367ee2aa482e1142d3e00bff6",
                "md5": "f5fb36e295b3ba842d2533c23c2a825e",
                "sha256": "61aed7a4cc97113e2b8771f5e5d557320ec1af4108184a749af1c0ff189cb8c2"
            },
            "downloads": -1,
            "filename": "amazon_datazone_mcp_server-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "f5fb36e295b3ba842d2533c23c2a825e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 48036,
            "upload_time": "2025-07-24T04:33:16",
            "upload_time_iso_8601": "2025-07-24T04:33:16.652156Z",
            "url": "https://files.pythonhosted.org/packages/5d/6e/0997fb13552532bddc31683a8a92c6588c5367ee2aa482e1142d3e00bff6/amazon_datazone_mcp_server-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-24 04:33:16",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "awslabs",
    "github_project": "amazon-datazone-mcp-server",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "amazon-datazone-mcp-server"
}
        
Elapsed time: 1.45268s