@opentweet/mcp-server 1.1.0 → 1.1.1

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.
Files changed (2) hide show
  1. package/README.md +12 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -8,9 +8,19 @@ MCP server for [OpenTweet](https://opentweet.io) — manage your Twitter/X prese
8
8
 
9
9
  Sign up at [opentweet.io](https://opentweet.io) and create an API key from the [Developer Dashboard](https://opentweet.io/developer).
10
10
 
11
- ### 2. Configure Your AI Client
11
+ ### 2. Install
12
12
 
13
- Add to your Claude Desktop config (`~/Library/Application Support/Claude/claude_desktop_config.json`):
13
+ **One-command setup** (auto-detects Claude Code, Claude Desktop, Cursor, and Windsurf):
14
+
15
+ ```bash
16
+ npx -y @opentweet/mcp-server --install --api-key ot_your_key_here
17
+ ```
18
+
19
+ This will find all installed AI clients on your machine and configure them automatically. Restart your AI clients after running this.
20
+
21
+ ### Manual Setup
22
+
23
+ If you prefer to configure manually, add to your Claude Desktop config (`~/Library/Application Support/Claude/claude_desktop_config.json`):
14
24
 
15
25
  ```json
16
26
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opentweet/mcp-server",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "OpenTweet MCP Server - Manage your Twitter/X presence from any AI assistant",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",