@lucianfialho/build-in-public-mcp 0.3.2 → 0.3.3
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 +103 -12
- package/dist/index.js +3 -3
- package/package.json +1 -1
- package/server.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Build in Public MCP Server
|
|
2
2
|
|
|
3
|
-
> ✅ **v0.3.
|
|
3
|
+
> ✅ **v0.3.3 - Multi-IDE Support!**
|
|
4
4
|
|
|
5
|
-
MCP (Model Context Protocol) server for Build in Public - automatically share your dev progress on Twitter directly from Claude Code
|
|
5
|
+
MCP (Model Context Protocol) server for Build in Public - automatically share your dev progress on Twitter directly from Claude Code, Cursor, VS Code, JetBrains IDEs, and more!
|
|
6
6
|
|
|
7
7
|
## 🎯 What is this?
|
|
8
8
|
|
|
@@ -18,6 +18,7 @@ This MCP server analyzes your coding sessions and generates intelligent tweet su
|
|
|
18
18
|
- 🔐 OAuth authentication (tokens stored locally)
|
|
19
19
|
- 💯 100% local - no external servers needed
|
|
20
20
|
- ⚡ Fast STDIO transport
|
|
21
|
+
- 🔌 **Multi-IDE support** - Works with Claude Code, Cursor, VS Code, JetBrains, and more!
|
|
21
22
|
|
|
22
23
|
## 📦 Installation
|
|
23
24
|
|
|
@@ -34,6 +35,96 @@ npm install -g @lucianfialho/build-in-public-mcp
|
|
|
34
35
|
claude mcp add --transport stdio build-in-public build-in-public-mcp
|
|
35
36
|
```
|
|
36
37
|
|
|
38
|
+
## 🔌 Compatible with Multiple IDEs
|
|
39
|
+
|
|
40
|
+
This MCP server uses **STDIO transport**, making it compatible with various AI-powered IDEs and editors!
|
|
41
|
+
|
|
42
|
+
### Cursor
|
|
43
|
+
|
|
44
|
+
Add to your `~/.cursor/mcp.json`:
|
|
45
|
+
|
|
46
|
+
```json
|
|
47
|
+
{
|
|
48
|
+
"mcpServers": {
|
|
49
|
+
"build-in-public": {
|
|
50
|
+
"command": "npx",
|
|
51
|
+
"args": ["@lucianfialho/build-in-public-mcp"]
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
**How to configure:**
|
|
58
|
+
1. Open Command Palette (`Ctrl+Shift+P` or `Cmd+Shift+P`)
|
|
59
|
+
2. Search for "Cursor Settings"
|
|
60
|
+
3. Click "MCP" in sidebar
|
|
61
|
+
4. Click "Add new global MCP server"
|
|
62
|
+
5. Paste the configuration above
|
|
63
|
+
|
|
64
|
+
**Note:** MCP tools are available in Cursor's Agent/Composer. Cursor currently supports up to 40 tools.
|
|
65
|
+
|
|
66
|
+
### VS Code
|
|
67
|
+
|
|
68
|
+
Add to your User Settings JSON (`Ctrl+Shift+P` → "Preferences: Open User Settings (JSON)"):
|
|
69
|
+
|
|
70
|
+
```json
|
|
71
|
+
{
|
|
72
|
+
"mcp.servers": {
|
|
73
|
+
"build-in-public": {
|
|
74
|
+
"command": "npx",
|
|
75
|
+
"args": ["@lucianfialho/build-in-public-mcp"],
|
|
76
|
+
"transport": "stdio"
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
### JetBrains IDEs (IntelliJ, PyCharm, WebStorm, Android Studio)
|
|
83
|
+
|
|
84
|
+
**Requires:** v2025.2 or later
|
|
85
|
+
|
|
86
|
+
1. Go to Settings → Tools → AI Assistant → Model Context Protocol
|
|
87
|
+
2. Add a new MCP server:
|
|
88
|
+
- **Name:** build-in-public
|
|
89
|
+
- **Transport:** STDIO
|
|
90
|
+
- **Command:** `npx`
|
|
91
|
+
- **Arguments:** `@lucianfialho/build-in-public-mcp`
|
|
92
|
+
|
|
93
|
+
### Visual Studio
|
|
94
|
+
|
|
95
|
+
**Requires:** VS 2026 or VS 2022 v17.14+
|
|
96
|
+
|
|
97
|
+
1. Go to Tools → Options → AI Assistant → MCP Servers
|
|
98
|
+
2. Add new server:
|
|
99
|
+
- **Transport:** STDIO
|
|
100
|
+
- **Command:** `npx @lucianfialho/build-in-public-mcp`
|
|
101
|
+
|
|
102
|
+
### Claude Desktop
|
|
103
|
+
|
|
104
|
+
Add to your config file:
|
|
105
|
+
|
|
106
|
+
**macOS:** `~/Library/Application Support/Claude/claude_desktop_config.json`
|
|
107
|
+
**Windows:** `%APPDATA%\Claude\claude_desktop_config.json`
|
|
108
|
+
|
|
109
|
+
```json
|
|
110
|
+
{
|
|
111
|
+
"mcpServers": {
|
|
112
|
+
"build-in-public": {
|
|
113
|
+
"command": "npx",
|
|
114
|
+
"args": ["@lucianfialho/build-in-public-mcp"]
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
### Windsurf / Cline
|
|
121
|
+
|
|
122
|
+
Follow similar configuration patterns as VS Code or Cursor. Refer to your IDE's MCP documentation.
|
|
123
|
+
|
|
124
|
+
---
|
|
125
|
+
|
|
126
|
+
**💡 Tip:** If you installed globally (`npm install -g`), replace `"command": "npx"` with `"command": "build-in-public-mcp"` and remove the args array.
|
|
127
|
+
|
|
37
128
|
## 📖 How It Works
|
|
38
129
|
|
|
39
130
|
**The Philosophy:** If Claude Code is already helping you code, why not help you share your journey too?
|
|
@@ -146,16 +237,18 @@ Just ask Claude to post directly:
|
|
|
146
237
|
## 🛠️ Architecture
|
|
147
238
|
|
|
148
239
|
```
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
240
|
+
AI IDE/Editor → STDIO → MCP Server (local) → HTTPS → Twitter API
|
|
241
|
+
↓
|
|
242
|
+
~/.build-in-public/
|
|
243
|
+
- auth.json (OAuth tokens)
|
|
244
|
+
- context.json (Session context)
|
|
245
|
+
- history.json (Tweet history)
|
|
155
246
|
```
|
|
156
247
|
|
|
157
248
|
**100% local, zero external infrastructure!**
|
|
158
249
|
|
|
250
|
+
The STDIO transport makes this server compatible with any MCP-enabled IDE or editor, including Claude Code, Cursor, VS Code, JetBrains IDEs, Visual Studio, Claude Desktop, Windsurf, and Cline.
|
|
251
|
+
|
|
159
252
|
## 🎭 MCP Prompts (Advanced)
|
|
160
253
|
|
|
161
254
|
The server exposes MCP prompts that Claude can use automatically:
|
|
@@ -224,6 +317,8 @@ Check authentication status and show storage location.
|
|
|
224
317
|
- [x] v0.2.0 - Twitter OAuth + tweet posting + thread creation
|
|
225
318
|
- [x] v0.3.0 - AI-powered suggestions + retro mode + context tracking
|
|
226
319
|
- [x] v0.3.2 - MCP prompts integration (retro, quick, suggest) ✅
|
|
320
|
+
- [x] v0.3.3 - Multi-IDE compatibility documentation ✅
|
|
321
|
+
- [ ] v0.4.0 - Official testing on Cursor, VS Code, JetBrains
|
|
227
322
|
- [ ] v1.0.0 - Production ready + comprehensive docs
|
|
228
323
|
- [ ] v1.1.0 - Enhanced hooks for automatic context tracking
|
|
229
324
|
- [ ] v2.0.0 - Optional analytics and insights
|
|
@@ -238,10 +333,6 @@ This is an early alpha! Contributions, issues, and feedback welcome.
|
|
|
238
333
|
|
|
239
334
|
MIT License - see LICENSE file for details
|
|
240
335
|
|
|
241
|
-
## 🙏 Credits
|
|
242
|
-
|
|
243
|
-
Built with [Claude Code](https://claude.com/code) and inspired by the #BuildInPublic community.
|
|
244
|
-
|
|
245
336
|
---
|
|
246
337
|
|
|
247
338
|
**Made with ❤️ for developers who build in public**
|
package/dist/index.js
CHANGED
|
@@ -15,7 +15,7 @@ const suggestion_engine_js_1 = require("./services/suggestion-engine.js");
|
|
|
15
15
|
// MCP Server instance
|
|
16
16
|
const server = new index_js_1.Server({
|
|
17
17
|
name: 'build-in-public',
|
|
18
|
-
version: '0.3.
|
|
18
|
+
version: '0.3.3',
|
|
19
19
|
}, {
|
|
20
20
|
capabilities: {
|
|
21
21
|
tools: {},
|
|
@@ -378,7 +378,7 @@ server.setRequestHandler(types_js_1.CallToolRequestSchema, async (request) => {
|
|
|
378
378
|
case 'mcp__bip__status': {
|
|
379
379
|
const authenticated = (0, twitter_js_1.isAuthenticated)();
|
|
380
380
|
let statusText = `📊 Build in Public MCP Server Status\n\n`;
|
|
381
|
-
statusText += `Version: 0.3.
|
|
381
|
+
statusText += `Version: 0.3.3\n`;
|
|
382
382
|
statusText += `Storage: ${(0, storage_js_1.getStorageDir)()}\n\n`;
|
|
383
383
|
// Debug: Show env vars status
|
|
384
384
|
statusText += `🔍 Environment Variables:\n`;
|
|
@@ -550,7 +550,7 @@ async function main() {
|
|
|
550
550
|
await server.connect(transport);
|
|
551
551
|
// Log to stderr (stdout is used for MCP protocol)
|
|
552
552
|
console.error('🚀 Build in Public MCP Server started');
|
|
553
|
-
console.error('📍 Version: 0.3.
|
|
553
|
+
console.error('📍 Version: 0.3.3');
|
|
554
554
|
console.error('🔗 Transport: STDIO');
|
|
555
555
|
console.error('💾 Storage:', (0, storage_js_1.getStorageDir)());
|
|
556
556
|
console.error('');
|
package/package.json
CHANGED
package/server.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://modelcontextprotocol.io/schemas/server.json",
|
|
3
3
|
"name": "build-in-public",
|
|
4
4
|
"description": "MCP server for Build in Public - automatically share your dev progress on Twitter",
|
|
5
|
-
"version": "0.2
|
|
5
|
+
"version": "0.3.2",
|
|
6
6
|
"transport": "stdio",
|
|
7
7
|
"environmentVariables": [
|
|
8
8
|
{
|