@misarblog/mcp 1.0.1 → 1.0.3

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/package.json +5 -3
  2. package/smithery.yaml +32 -0
package/package.json CHANGED
@@ -1,14 +1,16 @@
1
1
  {
2
2
  "name": "@misarblog/mcp",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "MCP server for Misar.Blog — publish blog posts, manage drafts, generate AI cover images, and access analytics from Claude Code, Cursor & Windsurf.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "bin": {
8
- "misarblog-mcp": "./dist/index.js"
8
+ "misarblog-mcp": "dist/index.js"
9
9
  },
10
10
  "files": [
11
- "dist"
11
+ "dist",
12
+ "smithery.yaml",
13
+ "README.md"
12
14
  ],
13
15
  "scripts": {
14
16
  "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
+ })