faceless-mcp 1.0.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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Faceless.so
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # faceless-mcp
2
+
3
+ Stdio MCP server for [Faceless.so](https://faceless.so): create AI faceless videos, run automated series and publish or schedule posts to YouTube, TikTok, Instagram and more from any MCP client. This package is a thin alias for `faceless mcp` from the [faceless-cli](https://www.npmjs.com/package/faceless-cli) package.
4
+
5
+ Add it to Claude Code with `claude mcp add faceless --env FACELESS_API_KEY=fl_live_... -- npx -y faceless-mcp`, or point any MCP client at the `faceless-mcp` command with `FACELESS_API_KEY` set. Create an API key in your team settings at https://faceless.so/team. A remote MCP server (no install) is also available at `https://faceless.so/api/v1/mcp` with the same key as a bearer token.
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env node
2
+ // Thin alias so MCP clients using the faceless-mcp naming convention work:
3
+ // claude mcp add faceless -- npx -y faceless-mcp
4
+ // All logic lives in the faceless-cli package (faceless mcp).
5
+ import("faceless-cli/src/mcp/stdio.mjs")
6
+ .then(({ runMcpServer }) => runMcpServer())
7
+ .catch((err) => {
8
+ console.error("faceless-mcp failed to start:", err?.message || err);
9
+ process.exit(1);
10
+ });
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "faceless-mcp",
3
+ "version": "1.0.0",
4
+ "description": "MCP server for Faceless.so (alias for `faceless mcp`): drive AI faceless video generation, series and publishing from any MCP client.",
5
+ "type": "module",
6
+ "bin": {
7
+ "faceless-mcp": "bin/faceless-mcp.js"
8
+ },
9
+ "files": [
10
+ "bin",
11
+ "README.md",
12
+ "LICENSE"
13
+ ],
14
+ "engines": {
15
+ "node": ">=18"
16
+ },
17
+ "license": "MIT",
18
+ "homepage": "https://faceless.so",
19
+ "keywords": [
20
+ "faceless",
21
+ "mcp",
22
+ "model-context-protocol",
23
+ "faceless-video",
24
+ "youtube",
25
+ "ai-video"
26
+ ],
27
+ "dependencies": {
28
+ "faceless-cli": "^1.0.0"
29
+ }
30
+ }