@misarblog/mcp 1.0.2 → 1.0.4
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/package.json +5 -2
- package/smithery.yaml +32 -0
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@misarblog/mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
|
+
"mcpName": "io.github.mrgulshanyadav/misarblog-mcp",
|
|
4
5
|
"description": "MCP server for Misar.Blog — publish blog posts, manage drafts, generate AI cover images, and access analytics from Claude Code, Cursor & Windsurf.",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"main": "./dist/index.js",
|
|
@@ -8,7 +9,9 @@
|
|
|
8
9
|
"misarblog-mcp": "dist/index.js"
|
|
9
10
|
},
|
|
10
11
|
"files": [
|
|
11
|
-
"dist"
|
|
12
|
+
"dist",
|
|
13
|
+
"smithery.yaml",
|
|
14
|
+
"README.md"
|
|
12
15
|
],
|
|
13
16
|
"scripts": {
|
|
14
17
|
"build": "tsc && chmod +x dist/index.js",
|
package/smithery.yaml
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# Smithery.ai configuration for @misarblog/mcp
|
|
2
|
+
# https://smithery.ai/server/@misarblog/mcp
|
|
3
|
+
startCommand:
|
|
4
|
+
type: stdio
|
|
5
|
+
configSchema:
|
|
6
|
+
type: object
|
|
7
|
+
properties:
|
|
8
|
+
apiKey:
|
|
9
|
+
type: string
|
|
10
|
+
title: API Key
|
|
11
|
+
description: >
|
|
12
|
+
Your Misar.Blog API key (starts with mbk_). Generate one at
|
|
13
|
+
https://www.misar.blog/dashboard/settings/api — or leave blank and
|
|
14
|
+
run the "login" tool to authenticate via browser.
|
|
15
|
+
x-secret: true
|
|
16
|
+
baseUrl:
|
|
17
|
+
type: string
|
|
18
|
+
title: Base URL
|
|
19
|
+
description: >
|
|
20
|
+
Only needed for self-hosted Misar.Blog instances.
|
|
21
|
+
Leave blank to use https://www.misar.blog.
|
|
22
|
+
default: ""
|
|
23
|
+
required: []
|
|
24
|
+
commandFunction: |-
|
|
25
|
+
(config) => ({
|
|
26
|
+
command: "npx",
|
|
27
|
+
args: ["-y", "@misarblog/mcp@latest"],
|
|
28
|
+
env: {
|
|
29
|
+
...(config.apiKey ? { MISARBLOG_API_KEY: config.apiKey } : {}),
|
|
30
|
+
...(config.baseUrl ? { MISARBLOG_BASE_URL: config.baseUrl } : {}),
|
|
31
|
+
},
|
|
32
|
+
})
|