Metadata-Version: 2.4
Name: openlayer-mcp
Version: 0.2.0
Summary: MCP server for the Openlayer platform
Requires-Python: >=3.10
Requires-Dist: httpx>=0.27.0
Requires-Dist: mcp[cli]>=1.6.0
Requires-Dist: openlayer>=0.2.0a51
Requires-Dist: requests>=2.28.0
Description-Content-Type: text/markdown

# Openlayer MCP

[MCP](https://github.com/modelcontextprotocol) (Model Context Protocol) server for
the Openlayer platform. This allows MCP clients (such as Cursor, VSCode,
Claude Desktop, etc.) to interact with the Openlayer platform.

## Installation

```bash
uv add openlayer-mcp
```
or

```bash
pip install openlayer-mcp
```

## Usage

To use the Openlayer MCP server in your IDE or desktop app, you need to add it
to the MCP configuration file.

```json
{
    "mcpServers": {
        "openlayer": {
            "command": "uvx",
            "args": [
                "openlayer-mcp"
            ],
            "env": {
                "OPENLAYER_API_KEY": "YOUR_OPENLAYER_API_KEY_HERE"
            }
        }
    }
}
```

You can alternatively run it as a standalone server with:

```bash
uv run -m openlayer_mcp
```










