Metadata-Version: 2.4
Name: shaped-mcp
Version: 0.1.1
Summary: MCP server for Shaped - retrieval for AI agents, search engines, and more
Requires-Python: >=3.10
Requires-Dist: httpx>=0.27.0
Requires-Dist: mcp>=1.0.0
Requires-Dist: shaped>=2.0.31
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.21.0; extra == 'dev'
Requires-Dist: pytest>=7.0.0; extra == 'dev'
Description-Content-Type: text/markdown

# Shaped MCP Server

MCP (Model Context Protocol) server that exposes Shaped's API to AI agents. Enables Cursor, Claude Desktop, and other MCP clients to create and manage tables, views, engines, and run queries.

## Quick Start

1. Install: from pypi `pip install shaped-mcp`.
2. Set `SHAPED_API_KEY` in your environment.
3. Configure your AI tool (see [AI Quickstart](https://docs.shaped.ai/docs/v2/overview/agent_quickstart#mcp-server)).

### Cursor setup

```
{
  "mcpServers": {
    "shaped": {
      "command": "shaped-mcp",
      "env": { "SHAPED_API_KEY": "your-key" }
    }
  }
}
```

### Claude setup

```
claude mcp add --transport stdio --env SHAPED_API_KEY=YOURKEY -- shaped-mcp
```
