@masaki39/marp-mcp 0.4.0 → 0.4.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.
- package/README.md +7 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
# Marp MCP Server
|
|
2
2
|
|
|
3
|
+

|
|
4
|
+
|
|
3
5
|
An MCP server for creating and editing Marp presentations with AI assistance.
|
|
4
6
|
This MCP server allows LLMs to edit Markdown files according to a specified layout, optimized for the [custom CSS](./assets/academic_custom.css) in this repository.
|
|
5
7
|
|
|
8
|
+
<a href="https://glama.ai/mcp/servers/@masaki39/marp-mcp">
|
|
9
|
+
<img width="380" height="200" src="https://glama.ai/mcp/servers/@masaki39/marp-mcp/badge" alt="Marp Server MCP server" />
|
|
10
|
+
</a>
|
|
11
|
+
|
|
6
12
|
## Setup
|
|
7
13
|
|
|
8
14
|
Add to your MCP client configuration:
|
|
@@ -59,4 +65,4 @@ MIT License
|
|
|
59
65
|
- [GitHub](https://github.com/masaki39/marp-mcp)
|
|
60
66
|
- [npm](https://www.npmjs.com/package/@masaki39/marp-mcp)
|
|
61
67
|
- [Marp](https://marp.app/)
|
|
62
|
-
- [Model Context Protocol](https://modelcontextprotocol.io)
|
|
68
|
+
- [Model Context Protocol](https://modelcontextprotocol.io)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@masaki39/marp-mcp",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "MCP server for Marp presentation management with custom theme support",
|
|
5
5
|
"main": "./build/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"marp-mcp": "./build/index.js"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
|
-
"build": "tsc && chmod 755 build/index.js",
|
|
11
|
+
"build": "tsc && shx chmod 755 build/index.js",
|
|
12
12
|
"prepublishOnly": "npm run build",
|
|
13
13
|
"prepare": "npm run build"
|
|
14
14
|
},
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/node": "^24.6.2",
|
|
49
|
-
"typescript": "^5.9.3"
|
|
49
|
+
"typescript": "^5.9.3",
|
|
50
|
+
"shx": "^0.3.4"
|
|
50
51
|
}
|
|
51
52
|
}
|