@@ -27,6 +27,19 @@ This section contains HTTP API reference docs for Bluesky and AT Protocol lexico
2727<!-- $toc-max-depth=2 -->
2828* [ @speakeasy-api/bluesky ] ( #speakeasy-apibluesky )
2929 * [ SDK Installation] ( #sdk-installation )
30+ * [ Requirements] ( #requirements )
31+ * [ SDK Example Usage] ( #sdk-example-usage )
32+ * [ Authentication] ( #authentication )
33+ * [ Available Resources and Operations] ( #available-resources-and-operations )
34+ * [ Standalone functions] ( #standalone-functions )
35+ * [ React hooks with TanStack Query] ( #react-hooks-with-tanstack-query )
36+ * [ Pagination] ( #pagination )
37+ * [ File uploads] ( #file-uploads )
38+ * [ Retries] ( #retries )
39+ * [ Error Handling] ( #error-handling )
40+ * [ Server Selection] ( #server-selection )
41+ * [ Custom HTTP Client] ( #custom-http-client )
42+ * [ Debugging] ( #debugging )
3043* [ Development] ( #development )
3144 * [ Maturity] ( #maturity )
3245 * [ Contributions] ( #contributions )
@@ -94,10 +107,12 @@ Add the following server definition to your `claude_desktop_config.json` file:
94107 "mcpServers" : {
95108 "Bluesky" : {
96109 "command" : " npx" ,
97- "args" : [" -y" , " --package" , " @speakeasy-sdks/bluesky" , " --" , " mcp" , " start" ],
98- "env" : {
99- "BLUESKY_BEARER" : " ..."
100- }
110+ "args" : [
111+ " -y" , " --package" , " @speakeasy-sdks/bluesky" ,
112+ " --" ,
113+ " mcp" , " start" ,
114+ " --bearer" , " ..."
115+ ]
101116 }
102117 }
103118}
@@ -108,29 +123,14 @@ Add the following server definition to your `claude_desktop_config.json` file:
108123<details >
109124<summary >Cursor installation steps</summary >
110125
111- 1 . Create a shell script called ` mcp-bluesky.sh ` with the following content:
112-
113- ``` sh
114- #! /bin/sh
115-
116- export BLUESKY_BEARER=" ..."
117-
118- exec npx -y --package @speakeasy-sdks/bluesky -- mcp start " $@ "
119- ```
120-
121- 2. Then make it executable with the following command:
126+ Go to ` Cursor Settings > Features > MCP Servers > Add new MCP server ` and use the following settings:
122127
123- ` ` ` sh
124- chmod +x mcp-bluesky.sh
125- ` ` `
126-
127- 3. In Cursor, ` Cursor Settings > Features > MCP Servers > Add new MCP server` and use the following settings:
128-
129- | Field | Value |
130- | ------- | ----- |
131- | Name | Bluesky |
132- | Type | ` command` |
133- | Command | ` /path/to/mcp-bluesky.sh` |
128+ - Name: Bluesky
129+ - Type: ` command `
130+ - Command:
131+ ``` sh
132+ npx -y --package @speakeasy-sdks/bluesky -- mcp start --bearer ...
133+ ```
134134
135135</details >
136136
0 commit comments