overture-mcp 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,154 @@
1
+ # Overture
2
+
3
+ **Visual plan execution and approval workflow for AI coding agents.**
4
+
5
+ ![Overture Demo](https://firebasestorage.googleapis.com/v0/b/sixth-v2.appspot.com/o/0221%20(1).gif?alt=media&token=dd1b4db5-480a-4178-9cc4-3d1380ea4e57)
6
+
7
+ ---
8
+
9
+ ## The Problem
10
+
11
+ Every AI coding agent today — Cursor, Claude Code, Cline, Copilot — works the same way: you type a prompt, the agent starts writing code, and you have no idea what it's actually planning to do.
12
+
13
+ By the time you realize the agent misunderstood your request, it has already written hundreds of lines of code that need to be discarded.
14
+
15
+ Some agents show plans as text in chat. But text plans don't show you:
16
+ - How steps relate to each other
17
+ - Where the plan branches into different approaches
18
+ - What context each step needs to succeed
19
+
20
+ You end up wasting tokens, time, and patience.
21
+
22
+ ---
23
+
24
+ ## The Solution
25
+
26
+ Overture intercepts your AI agent's planning phase and renders it as an interactive visual flowchart — before any code is written.
27
+
28
+ ![Overture Screenshot](../../assets/screenshot.png)
29
+
30
+ With Overture, you can:
31
+
32
+ - **See the complete plan** as an interactive graph before execution begins
33
+ - **Click any node** to view full details about what that step will do
34
+ - **Attach context** like files, documents, API keys, and instructions to specific steps
35
+ - **Choose between approaches** when the agent proposes multiple ways to solve a problem
36
+ - **Watch execution in real-time** as nodes light up with progress, completion, or errors
37
+
38
+ The agent doesn't write a single line of code until you approve the plan.
39
+
40
+ ---
41
+
42
+ ## Installation
43
+
44
+ Overture is an MCP server that works with any MCP-compatible AI coding agent.
45
+
46
+ ### Claude Code
47
+
48
+ Run this command to add Overture to Claude Code:
49
+
50
+ ```bash
51
+ claude mcp add overture-mcp -- npx overture-mcp
52
+ ```
53
+
54
+ That's it. Claude Code will now use Overture for plan visualization.
55
+
56
+ ### Cursor
57
+
58
+ Open your Cursor MCP configuration file at `~/.cursor/mcp.json` and add:
59
+
60
+ ```json
61
+ {
62
+ "mcpServers": {
63
+ "overture": {
64
+ "command": "npx",
65
+ "args": ["overture-mcp"]
66
+ }
67
+ }
68
+ }
69
+ ```
70
+
71
+ Restart Cursor for the changes to take effect.
72
+
73
+ ### Cline (VS Code Extension)
74
+
75
+ Open VS Code settings, search for "Cline MCP", and add this to your MCP servers configuration:
76
+
77
+ ```json
78
+ {
79
+ "mcpServers": {
80
+ "overture": {
81
+ "command": "npx",
82
+ "args": ["overture-mcp"]
83
+ }
84
+ }
85
+ }
86
+ ```
87
+
88
+ ### Global Installation (Optional)
89
+
90
+ If you prefer to install Overture globally instead of using npx:
91
+
92
+ ```bash
93
+ npm install -g overture-mcp
94
+ ```
95
+
96
+ Then replace `npx overture-mcp` with just `overture-mcp` in any of the configurations above.
97
+
98
+ ### Verifying Installation
99
+
100
+ Once installed, give your agent any task. Overture will automatically open in your browser at `http://localhost:3031` and display the plan for your approval.
101
+
102
+ ---
103
+
104
+ ## How It Works
105
+
106
+ 1. **You prompt your agent** with a task like "Build a REST API with authentication"
107
+
108
+ 2. **The agent generates a detailed plan** broken down into individual steps, with branching paths where multiple approaches are possible
109
+
110
+ 3. **Overture displays the plan** as an interactive graph in your browser
111
+
112
+ 4. **You review and enrich the plan** by clicking nodes to see details, attaching files or API keys to specific steps, and selecting which approach to take at decision points
113
+
114
+ 5. **You approve the plan** and the agent begins execution
115
+
116
+ 6. **You watch progress in real-time** as each node updates with its status — active, completed, or failed
117
+
118
+ ---
119
+
120
+ ## Configuration
121
+
122
+ You can customize Overture's behavior with environment variables:
123
+
124
+ | Variable | Default | Description |
125
+ |----------|---------|-------------|
126
+ | `OVERTURE_HTTP_PORT` | `3031` | Port for the web interface |
127
+ | `OVERTURE_WS_PORT` | `3030` | Port for WebSocket communication |
128
+ | `OVERTURE_AUTO_OPEN` | `true` | Whether to automatically open the browser |
129
+
130
+ ---
131
+
132
+ ## Contributing
133
+
134
+ Overture is open source and we welcome contributions from the community.
135
+
136
+ Whether you want to report a bug, suggest a feature, improve documentation, or contribute code — we'd love to have you involved.
137
+
138
+ - **Report issues** at [github.com/SixHq/Overture/issues](https://github.com/SixHq/Overture/issues)
139
+ - **Read the contributing guide** at [CONTRIBUTING.md](https://github.com/SixHq/Overture/blob/main/CONTRIBUTING.md)
140
+ - **Join the discussion** in GitHub Discussions
141
+
142
+ All contributions are appreciated, no matter how small.
143
+
144
+ ---
145
+
146
+ ## License
147
+
148
+ MIT License - see [LICENSE](https://github.com/SixHq/Overture/blob/main/LICENSE) for details.
149
+
150
+ ---
151
+
152
+ Built by [Sixth](https://trysixth.com)
153
+
154
+ For an even better experience, try [Sixth for VS Code](https://marketplace.visualstudio.com/items?itemName=Sixth.sixth-ai) — Overture is built-in with zero configuration required.