@microlink/mcp 1.0.0 → 1.0.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 +22 -0
- package/package.json +17 -17
package/README.md
CHANGED
|
@@ -412,6 +412,28 @@ Extract plain text from any public URL. Returns JSON output with plain text cont
|
|
|
412
412
|
|
|
413
413
|
---
|
|
414
414
|
|
|
415
|
+
## Skills
|
|
416
|
+
|
|
417
|
+
This package bundles [Agent Skills](https://agentskills.io) in the [`skills/`](./skills)
|
|
418
|
+
directory. Each skill is a self-contained `SKILL.md` that teaches an AI agent how to
|
|
419
|
+
accomplish a task with the Microlink MCP tools above. They follow the open Agent Skills
|
|
420
|
+
standard, so they work with any agent that supports it (Claude Code, Claude Desktop,
|
|
421
|
+
Cursor, VS Code agents, and others).
|
|
422
|
+
|
|
423
|
+
| Skill | What it does | Tools used |
|
|
424
|
+
|-------|--------------|------------|
|
|
425
|
+
| [`capture-web-screenshot`](./skills/capture-web-screenshot/SKILL.md) | Screenshots & PDFs (full-page, element, device, dark mode, OG images) | `microlink_screenshot`, `microlink_pdf` |
|
|
426
|
+
| [`extract-web-content`](./skills/extract-web-content/SKILL.md) | URL → clean Markdown, plain text, metadata, or custom CSS-scraped fields | `microlink_markdown`, `microlink_text`, `microlink_meta`, `microlink_extract` |
|
|
427
|
+
| [`build-link-preview`](./skills/build-link-preview/SKILL.md) | Rich link-unfurl / social cards from metadata, palette, and thumbnail | `microlink_meta`, `microlink_palette`, `microlink_screenshot` |
|
|
428
|
+
| [`audit-website-insights`](./skills/audit-website-insights/SKILL.md) | Lighthouse performance / SEO / a11y audits and tech-stack detection | `microlink_insights` |
|
|
429
|
+
| [`extract-media-source`](./skills/extract-media-source/SKILL.md) | Resolve a page to a direct, playable video or audio source URL | `microlink_video`, `microlink_audio` |
|
|
430
|
+
|
|
431
|
+
To use a skill in Claude Code, copy its directory into `.claude/skills/`. For other
|
|
432
|
+
agents, see your tool's skills or extensions catalog. More detail in
|
|
433
|
+
[`skills/README.md`](./skills/README.md).
|
|
434
|
+
|
|
435
|
+
---
|
|
436
|
+
|
|
415
437
|
## Authentication
|
|
416
438
|
|
|
417
439
|
Every tool accepts an optional `apiKey` parameter. The key is resolved from these sources in order of priority:
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@microlink/mcp",
|
|
3
3
|
"description": "MCP server for Microlink API",
|
|
4
4
|
"homepage": "https://github.com/microlinkhq/mcp",
|
|
5
|
-
"version": "1.0.
|
|
5
|
+
"version": "1.0.1",
|
|
6
6
|
"main": "./src/index.js",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": "./src/index.js"
|
|
@@ -64,6 +64,20 @@
|
|
|
64
64
|
"scripts",
|
|
65
65
|
"src"
|
|
66
66
|
],
|
|
67
|
+
"scripts": {
|
|
68
|
+
"contributors": "(git-authors-cli && finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
|
|
69
|
+
"postinstall": "node scripts/postinstall.js",
|
|
70
|
+
"postrelease": "pnpm release:tags && pnpm release:github && (ci-publish || pnpm publish --access=public)",
|
|
71
|
+
"release": "pnpm release:version && pnpm release:changelog && pnpm release:commit && pnpm release:tag",
|
|
72
|
+
"release:changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s",
|
|
73
|
+
"release:commit": "git add package.json CHANGELOG.md && git commit -m \"chore(release): $(node -p \"require('./package.json').version\")\"",
|
|
74
|
+
"release:github": "github-generate-release",
|
|
75
|
+
"release:tag": "git tag -a v$(node -p \"require('./package.json').version\") -m \"v$(node -p \"require('./package.json').version\")\"",
|
|
76
|
+
"release:tags": "git push origin HEAD:master --follow-tags",
|
|
77
|
+
"release:version": "standard-version --skip.changelog --skip.commit --skip.tag",
|
|
78
|
+
"start": "node src/index.js",
|
|
79
|
+
"test": "node --test test/*.test.js"
|
|
80
|
+
},
|
|
67
81
|
"license": "MIT",
|
|
68
82
|
"commitlint": {
|
|
69
83
|
"extends": [
|
|
@@ -86,19 +100,5 @@
|
|
|
86
100
|
"commit-msg": "npx commitlint --edit",
|
|
87
101
|
"pre-commit": "npx nano-staged"
|
|
88
102
|
},
|
|
89
|
-
"type": "module"
|
|
90
|
-
|
|
91
|
-
"contributors": "(git-authors-cli && finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
|
|
92
|
-
"postinstall": "node scripts/postinstall.js",
|
|
93
|
-
"postrelease": "pnpm release:tags && pnpm release:github && (ci-publish || pnpm publish --access=public)",
|
|
94
|
-
"release": "pnpm release:version && pnpm release:changelog && pnpm release:commit && pnpm release:tag",
|
|
95
|
-
"release:changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s",
|
|
96
|
-
"release:commit": "git add package.json CHANGELOG.md && git commit -m \"chore(release): $(node -p \"require('./package.json').version\")\"",
|
|
97
|
-
"release:github": "github-generate-release",
|
|
98
|
-
"release:tag": "git tag -a v$(node -p \"require('./package.json').version\") -m \"v$(node -p \"require('./package.json').version\")\"",
|
|
99
|
-
"release:tags": "git push origin HEAD:master --follow-tags",
|
|
100
|
-
"release:version": "standard-version --skip.changelog --skip.commit --skip.tag",
|
|
101
|
-
"start": "node src/index.js",
|
|
102
|
-
"test": "node --test test/*.test.js"
|
|
103
|
-
}
|
|
104
|
-
}
|
|
103
|
+
"type": "module"
|
|
104
|
+
}
|