@florentleveque/mural-mcp-serveur 0.5.2 → 1.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 +15 -1
- package/build/index.js +322 -276
- package/build/index.js.map +1 -1
- package/build/mural-client.d.ts +1 -1
- package/build/mural-client.d.ts.map +1 -1
- package/build/mural-client.js +35 -30
- package/build/mural-client.js.map +1 -1
- package/build/oauth.d.ts.map +1 -1
- package/build/oauth.js +20 -31
- package/build/oauth.js.map +1 -1
- package/build/rate-limiter.d.ts +1 -1
- package/build/rate-limiter.d.ts.map +1 -1
- package/build/rate-limiter.js +12 -12
- package/build/rate-limiter.js.map +1 -1
- package/build/types.d.ts.map +1 -1
- package/package.json +26 -5
package/README.md
CHANGED
|
@@ -20,6 +20,7 @@ A Model Context Protocol (MCP) server that provides integration with the Mural v
|
|
|
20
20
|
## Tools Available
|
|
21
21
|
|
|
22
22
|
**Authentication & utilities**
|
|
23
|
+
|
|
23
24
|
- `test-connection`: Test the connection to Mural API and verify authentication
|
|
24
25
|
- `clear-auth`: Clear stored authentication tokens (forces re-authentication)
|
|
25
26
|
- `check-user-scopes`: Show the current token's OAuth scopes
|
|
@@ -27,19 +28,23 @@ A Model Context Protocol (MCP) server that provides integration with the Mural v
|
|
|
27
28
|
- `debug-api-response`: Raw workspaces API response (troubleshooting)
|
|
28
29
|
|
|
29
30
|
**Workspaces**
|
|
31
|
+
|
|
30
32
|
- `list-workspaces`: List all workspaces the authenticated user has access to
|
|
31
33
|
- `get-workspace`: Get detailed information about a specific workspace
|
|
32
34
|
|
|
33
35
|
**Rooms**
|
|
36
|
+
|
|
34
37
|
- `list-workspace-rooms`: List a workspace's rooms (option `openOnly`)
|
|
35
38
|
- `list-room-boards`: List the murals within a room
|
|
36
39
|
- `create-room`: Create a room (`open`/`private`)
|
|
37
40
|
|
|
38
41
|
**Templates**
|
|
42
|
+
|
|
39
43
|
- `list-workspace-templates`: List a workspace's templates (default + custom), or search by name
|
|
40
44
|
- `create-mural-from-template`: Create a mural in a room from a template
|
|
41
45
|
|
|
42
46
|
**Murals**
|
|
47
|
+
|
|
43
48
|
- `list-workspace-boards`: List a workspace's murals
|
|
44
49
|
- `get-board`: Get details of a specific mural
|
|
45
50
|
- `create-mural`: Create a blank mural in a room
|
|
@@ -49,6 +54,7 @@ A Model Context Protocol (MCP) server that provides integration with the Mural v
|
|
|
49
54
|
- `export-mural`: Export a mural in a given format
|
|
50
55
|
|
|
51
56
|
**Widgets**
|
|
57
|
+
|
|
52
58
|
- `get-mural-widgets`: Get all widgets of a mural (paginated)
|
|
53
59
|
- `get-mural-widget`: Get a specific widget by id
|
|
54
60
|
- `create-sticky-notes`: Create sticky notes (up to 1000 per request)
|
|
@@ -78,6 +84,7 @@ pnpm add -g @florentleveque/mural-mcp-serveur
|
|
|
78
84
|
### Option 2: Install from source
|
|
79
85
|
|
|
80
86
|
1. Clone and install dependencies:
|
|
87
|
+
|
|
81
88
|
```bash
|
|
82
89
|
git clone https://github.com/florentleveque/mural-mcp-serveur.git
|
|
83
90
|
cd mural-mcp-serveur
|
|
@@ -85,6 +92,7 @@ pnpm install
|
|
|
85
92
|
```
|
|
86
93
|
|
|
87
94
|
2. Build the project:
|
|
95
|
+
|
|
88
96
|
```bash
|
|
89
97
|
pnpm run build
|
|
90
98
|
```
|
|
@@ -92,6 +100,7 @@ pnpm run build
|
|
|
92
100
|
## Setup
|
|
93
101
|
|
|
94
102
|
1. Set up environment variables:
|
|
103
|
+
|
|
95
104
|
```bash
|
|
96
105
|
cp .env.example .env
|
|
97
106
|
# Edit .env with your Mural OAuth credentials
|
|
@@ -289,6 +298,10 @@ npx @modelcontextprotocol/inspector node build/index.js
|
|
|
289
298
|
4. Add tests if applicable
|
|
290
299
|
5. Submit a pull request
|
|
291
300
|
|
|
301
|
+
## Inspired by
|
|
302
|
+
|
|
303
|
+
This project is inspired by [cogell/mural-mcp](https://github.com/cogell/mural-mcp).
|
|
304
|
+
|
|
292
305
|
## License
|
|
293
306
|
|
|
294
307
|
MIT License - see LICENSE file for details
|
|
@@ -296,6 +309,7 @@ MIT License - see LICENSE file for details
|
|
|
296
309
|
## Support
|
|
297
310
|
|
|
298
311
|
For issues and questions:
|
|
312
|
+
|
|
299
313
|
- Check the troubleshooting section above
|
|
300
314
|
- Review Mural API documentation
|
|
301
|
-
- Create an issue in the repository
|
|
315
|
+
- Create an issue in the repository
|