future-video-studio-mcp 0.1.1__tar.gz
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.
- future_video_studio_mcp-0.1.1/.github/workflows/publish-pypi.yml +26 -0
- future_video_studio_mcp-0.1.1/.github/workflows/test.yml +23 -0
- future_video_studio_mcp-0.1.1/.gitignore +11 -0
- future_video_studio_mcp-0.1.1/CHANGELOG.md +11 -0
- future_video_studio_mcp-0.1.1/Dockerfile +17 -0
- future_video_studio_mcp-0.1.1/LICENSE +21 -0
- future_video_studio_mcp-0.1.1/PKG-INFO +166 -0
- future_video_studio_mcp-0.1.1/README.md +136 -0
- future_video_studio_mcp-0.1.1/SECURITY.md +10 -0
- future_video_studio_mcp-0.1.1/pyproject.toml +49 -0
- future_video_studio_mcp-0.1.1/server.json +43 -0
- future_video_studio_mcp-0.1.1/src/fvs_mcp_server/__init__.py +5 -0
- future_video_studio_mcp-0.1.1/src/fvs_mcp_server/__main__.py +6 -0
- future_video_studio_mcp-0.1.1/src/fvs_mcp_server/client.py +460 -0
- future_video_studio_mcp-0.1.1/src/fvs_mcp_server/server.py +565 -0
- future_video_studio_mcp-0.1.1/tests/test_client.py +249 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
name: Publish to PyPI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
release:
|
|
5
|
+
types: [published]
|
|
6
|
+
workflow_dispatch:
|
|
7
|
+
|
|
8
|
+
permissions:
|
|
9
|
+
contents: read
|
|
10
|
+
id-token: write
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
publish:
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
environment: pypi
|
|
16
|
+
steps:
|
|
17
|
+
- uses: actions/checkout@v5
|
|
18
|
+
- uses: actions/setup-python@v6
|
|
19
|
+
with:
|
|
20
|
+
python-version: "3.13"
|
|
21
|
+
- name: Install build tools
|
|
22
|
+
run: python -m pip install --upgrade build
|
|
23
|
+
- name: Build distributions
|
|
24
|
+
run: python -m build
|
|
25
|
+
- name: Publish distributions to PyPI
|
|
26
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
name: Tests
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
push:
|
|
6
|
+
branches: [main]
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
test:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
strategy:
|
|
12
|
+
fail-fast: false
|
|
13
|
+
matrix:
|
|
14
|
+
python-version: ["3.11", "3.12", "3.13"]
|
|
15
|
+
steps:
|
|
16
|
+
- uses: actions/checkout@v5
|
|
17
|
+
- uses: actions/setup-python@v6
|
|
18
|
+
with:
|
|
19
|
+
python-version: ${{ matrix.python-version }}
|
|
20
|
+
- name: Install package
|
|
21
|
+
run: python -m pip install -e ".[dev]"
|
|
22
|
+
- name: Run tests
|
|
23
|
+
run: python -m pytest
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 0.1.1
|
|
4
|
+
|
|
5
|
+
- Prepare standalone MCP package repository.
|
|
6
|
+
- Add PyPI package metadata and official MCP Registry package metadata.
|
|
7
|
+
- Document hosted remote MCP and local stdio installation paths.
|
|
8
|
+
|
|
9
|
+
## 0.1.0
|
|
10
|
+
|
|
11
|
+
- Initial Future Video Studio MCP server.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
FROM python:3.12-slim
|
|
2
|
+
|
|
3
|
+
ENV PYTHONDONTWRITEBYTECODE=1 \
|
|
4
|
+
PYTHONUNBUFFERED=1 \
|
|
5
|
+
FVS_MCP_TRANSPORT=streamable-http \
|
|
6
|
+
FVS_AGENT_BASE_URL=https://app.future.video
|
|
7
|
+
|
|
8
|
+
WORKDIR /app
|
|
9
|
+
|
|
10
|
+
COPY pyproject.toml README.md ./
|
|
11
|
+
COPY src ./src
|
|
12
|
+
|
|
13
|
+
RUN python -m pip install --no-cache-dir --upgrade pip \
|
|
14
|
+
&& python -m pip install --no-cache-dir .
|
|
15
|
+
|
|
16
|
+
CMD ["python", "-m", "fvs_mcp_server"]
|
|
17
|
+
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Future Video Studio
|
|
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.
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: future-video-studio-mcp
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: MCP server for creating Future Video Studio renders through the FVS Agent API.
|
|
5
|
+
Project-URL: Homepage, https://future.video
|
|
6
|
+
Project-URL: Documentation, https://future.video/api-docs
|
|
7
|
+
Project-URL: Repository, https://github.com/ariadne-coil/fvs-mcp
|
|
8
|
+
Project-URL: Issues, https://github.com/ariadne-coil/fvs-mcp/issues
|
|
9
|
+
Author: Future Video Studio
|
|
10
|
+
License-Expression: MIT
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Keywords: agents,ai-video,mcp,model-context-protocol,video
|
|
13
|
+
Classifier: Development Status :: 3 - Alpha
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Topic :: Multimedia :: Video
|
|
21
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
|
+
Requires-Python: >=3.11
|
|
23
|
+
Requires-Dist: mcp>=1.26.0
|
|
24
|
+
Requires-Dist: uvicorn>=0.30.0
|
|
25
|
+
Provides-Extra: dev
|
|
26
|
+
Requires-Dist: build>=1.3.0; extra == 'dev'
|
|
27
|
+
Requires-Dist: pytest>=9.0.0; extra == 'dev'
|
|
28
|
+
Requires-Dist: twine>=6.2.0; extra == 'dev'
|
|
29
|
+
Description-Content-Type: text/markdown
|
|
30
|
+
|
|
31
|
+
# Future Video Studio MCP
|
|
32
|
+
|
|
33
|
+
<!-- mcp-name: video.future/future-video-studio -->
|
|
34
|
+
|
|
35
|
+
Future Video Studio MCP lets agents create, monitor, cancel, and download
|
|
36
|
+
cinematic AI video renders through the Future Video Studio Agent API.
|
|
37
|
+
|
|
38
|
+
The hosted MCP server is available at:
|
|
39
|
+
|
|
40
|
+
```text
|
|
41
|
+
https://mcp.future.video/mcp
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
The same server can also run locally over stdio from this Python package.
|
|
45
|
+
|
|
46
|
+
## Billing Paths
|
|
47
|
+
|
|
48
|
+
- Account mode: provide `X-FVS-Agent-Key` or `FVS_AGENT_API_KEY`. Renders charge
|
|
49
|
+
the owning Future Video Studio account wallet under the same credit model and
|
|
50
|
+
saved pipeline defaults as the web app.
|
|
51
|
+
- Pay-per-render mode: omit the account key. The server returns a Link/Stripe
|
|
52
|
+
MPP payment quote, then exposes a claim-token status URL so the agent can
|
|
53
|
+
retrieve the result.
|
|
54
|
+
|
|
55
|
+
Agents should get explicit user approval before submitting wallet-backed
|
|
56
|
+
account renders.
|
|
57
|
+
|
|
58
|
+
## Tools
|
|
59
|
+
|
|
60
|
+
- `fvs_submit_render`: submit a render request, optionally with uploaded files
|
|
61
|
+
- `fvs_create_paid_render_quote`: create a no-account Link payment quote
|
|
62
|
+
- `fvs_get_render_status`: check a render by `project_id` or `status_url`
|
|
63
|
+
- `fvs_get_paid_render_status`: check a paid render by `status_url` or `quote_id` plus `claim_token`
|
|
64
|
+
- `fvs_cancel_render`: cancel a render by `project_id` or `cancel_url`
|
|
65
|
+
- `fvs_download_final_video`: save a completed render from its signed URL
|
|
66
|
+
- `fvs_example_render_request`: return an example scene render payload
|
|
67
|
+
|
|
68
|
+
## Remote MCP Config
|
|
69
|
+
|
|
70
|
+
Account mode:
|
|
71
|
+
|
|
72
|
+
```json
|
|
73
|
+
{
|
|
74
|
+
"mcpServers": {
|
|
75
|
+
"future-video-studio": {
|
|
76
|
+
"url": "https://mcp.future.video/mcp",
|
|
77
|
+
"headers": {
|
|
78
|
+
"X-FVS-Agent-Key": "fvs_live_replace_me"
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
Pay-per-render mode:
|
|
86
|
+
|
|
87
|
+
```json
|
|
88
|
+
{
|
|
89
|
+
"mcpServers": {
|
|
90
|
+
"future-video-studio": {
|
|
91
|
+
"url": "https://mcp.future.video/mcp"
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
## Local Install
|
|
98
|
+
|
|
99
|
+
```powershell
|
|
100
|
+
python -m pip install future-video-studio-mcp
|
|
101
|
+
python -m fvs_mcp_server
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
Example local stdio MCP config:
|
|
105
|
+
|
|
106
|
+
```json
|
|
107
|
+
{
|
|
108
|
+
"mcpServers": {
|
|
109
|
+
"future-video-studio": {
|
|
110
|
+
"command": "python",
|
|
111
|
+
"args": ["-m", "fvs_mcp_server"],
|
|
112
|
+
"env": {
|
|
113
|
+
"FVS_AGENT_API_KEY": "fvs_live_replace_me",
|
|
114
|
+
"FVS_AGENT_BASE_URL": "https://app.future.video"
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
`FVS_AGENT_API_KEY` is optional. Leave it unset to use paid quote mode.
|
|
122
|
+
`FVS_AGENT_BASE_URL` defaults to `https://app.future.video`.
|
|
123
|
+
|
|
124
|
+
## Local Development
|
|
125
|
+
|
|
126
|
+
```powershell
|
|
127
|
+
python -m pip install -e ".[dev]"
|
|
128
|
+
python -m pytest
|
|
129
|
+
python -m fvs_mcp_server
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
Run the HTTP transport locally:
|
|
133
|
+
|
|
134
|
+
```powershell
|
|
135
|
+
$env:FVS_MCP_TRANSPORT = "streamable-http"
|
|
136
|
+
python -m fvs_mcp_server
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
## Publishing
|
|
140
|
+
|
|
141
|
+
Build and check the package:
|
|
142
|
+
|
|
143
|
+
```powershell
|
|
144
|
+
python -m build
|
|
145
|
+
python -m twine check dist/*
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
This package is intended to publish to PyPI as:
|
|
149
|
+
|
|
150
|
+
```text
|
|
151
|
+
future-video-studio-mcp
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
The MCP Registry package verification marker is the hidden comment near the top
|
|
155
|
+
of this README:
|
|
156
|
+
|
|
157
|
+
```html
|
|
158
|
+
<!-- mcp-name: video.future/future-video-studio -->
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
## Links
|
|
162
|
+
|
|
163
|
+
- Future Video Studio: https://future.video
|
|
164
|
+
- Agent API docs: https://future.video/api-docs
|
|
165
|
+
- Hosted MCP manifest: https://mcp.future.video/server.json
|
|
166
|
+
- Official MCP Registry name: `video.future/future-video-studio`
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
# Future Video Studio MCP
|
|
2
|
+
|
|
3
|
+
<!-- mcp-name: video.future/future-video-studio -->
|
|
4
|
+
|
|
5
|
+
Future Video Studio MCP lets agents create, monitor, cancel, and download
|
|
6
|
+
cinematic AI video renders through the Future Video Studio Agent API.
|
|
7
|
+
|
|
8
|
+
The hosted MCP server is available at:
|
|
9
|
+
|
|
10
|
+
```text
|
|
11
|
+
https://mcp.future.video/mcp
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
The same server can also run locally over stdio from this Python package.
|
|
15
|
+
|
|
16
|
+
## Billing Paths
|
|
17
|
+
|
|
18
|
+
- Account mode: provide `X-FVS-Agent-Key` or `FVS_AGENT_API_KEY`. Renders charge
|
|
19
|
+
the owning Future Video Studio account wallet under the same credit model and
|
|
20
|
+
saved pipeline defaults as the web app.
|
|
21
|
+
- Pay-per-render mode: omit the account key. The server returns a Link/Stripe
|
|
22
|
+
MPP payment quote, then exposes a claim-token status URL so the agent can
|
|
23
|
+
retrieve the result.
|
|
24
|
+
|
|
25
|
+
Agents should get explicit user approval before submitting wallet-backed
|
|
26
|
+
account renders.
|
|
27
|
+
|
|
28
|
+
## Tools
|
|
29
|
+
|
|
30
|
+
- `fvs_submit_render`: submit a render request, optionally with uploaded files
|
|
31
|
+
- `fvs_create_paid_render_quote`: create a no-account Link payment quote
|
|
32
|
+
- `fvs_get_render_status`: check a render by `project_id` or `status_url`
|
|
33
|
+
- `fvs_get_paid_render_status`: check a paid render by `status_url` or `quote_id` plus `claim_token`
|
|
34
|
+
- `fvs_cancel_render`: cancel a render by `project_id` or `cancel_url`
|
|
35
|
+
- `fvs_download_final_video`: save a completed render from its signed URL
|
|
36
|
+
- `fvs_example_render_request`: return an example scene render payload
|
|
37
|
+
|
|
38
|
+
## Remote MCP Config
|
|
39
|
+
|
|
40
|
+
Account mode:
|
|
41
|
+
|
|
42
|
+
```json
|
|
43
|
+
{
|
|
44
|
+
"mcpServers": {
|
|
45
|
+
"future-video-studio": {
|
|
46
|
+
"url": "https://mcp.future.video/mcp",
|
|
47
|
+
"headers": {
|
|
48
|
+
"X-FVS-Agent-Key": "fvs_live_replace_me"
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Pay-per-render mode:
|
|
56
|
+
|
|
57
|
+
```json
|
|
58
|
+
{
|
|
59
|
+
"mcpServers": {
|
|
60
|
+
"future-video-studio": {
|
|
61
|
+
"url": "https://mcp.future.video/mcp"
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
## Local Install
|
|
68
|
+
|
|
69
|
+
```powershell
|
|
70
|
+
python -m pip install future-video-studio-mcp
|
|
71
|
+
python -m fvs_mcp_server
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
Example local stdio MCP config:
|
|
75
|
+
|
|
76
|
+
```json
|
|
77
|
+
{
|
|
78
|
+
"mcpServers": {
|
|
79
|
+
"future-video-studio": {
|
|
80
|
+
"command": "python",
|
|
81
|
+
"args": ["-m", "fvs_mcp_server"],
|
|
82
|
+
"env": {
|
|
83
|
+
"FVS_AGENT_API_KEY": "fvs_live_replace_me",
|
|
84
|
+
"FVS_AGENT_BASE_URL": "https://app.future.video"
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
`FVS_AGENT_API_KEY` is optional. Leave it unset to use paid quote mode.
|
|
92
|
+
`FVS_AGENT_BASE_URL` defaults to `https://app.future.video`.
|
|
93
|
+
|
|
94
|
+
## Local Development
|
|
95
|
+
|
|
96
|
+
```powershell
|
|
97
|
+
python -m pip install -e ".[dev]"
|
|
98
|
+
python -m pytest
|
|
99
|
+
python -m fvs_mcp_server
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
Run the HTTP transport locally:
|
|
103
|
+
|
|
104
|
+
```powershell
|
|
105
|
+
$env:FVS_MCP_TRANSPORT = "streamable-http"
|
|
106
|
+
python -m fvs_mcp_server
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
## Publishing
|
|
110
|
+
|
|
111
|
+
Build and check the package:
|
|
112
|
+
|
|
113
|
+
```powershell
|
|
114
|
+
python -m build
|
|
115
|
+
python -m twine check dist/*
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
This package is intended to publish to PyPI as:
|
|
119
|
+
|
|
120
|
+
```text
|
|
121
|
+
future-video-studio-mcp
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
The MCP Registry package verification marker is the hidden comment near the top
|
|
125
|
+
of this README:
|
|
126
|
+
|
|
127
|
+
```html
|
|
128
|
+
<!-- mcp-name: video.future/future-video-studio -->
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
## Links
|
|
132
|
+
|
|
133
|
+
- Future Video Studio: https://future.video
|
|
134
|
+
- Agent API docs: https://future.video/api-docs
|
|
135
|
+
- Hosted MCP manifest: https://mcp.future.video/server.json
|
|
136
|
+
- Official MCP Registry name: `video.future/future-video-studio`
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Security
|
|
2
|
+
|
|
3
|
+
Report security issues privately to support@future.video.
|
|
4
|
+
|
|
5
|
+
Do not include active FVS Agent API keys, claim tokens, payment URLs, or private
|
|
6
|
+
render assets in public reports.
|
|
7
|
+
|
|
8
|
+
This MCP can submit wallet-backed renders when configured with an
|
|
9
|
+
`FVS_AGENT_API_KEY`. Agents and clients should request explicit user approval
|
|
10
|
+
before spending account wallet credits.
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "future-video-studio-mcp"
|
|
3
|
+
version = "0.1.1"
|
|
4
|
+
description = "MCP server for creating Future Video Studio renders through the FVS Agent API."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.11"
|
|
7
|
+
license = "MIT"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name = "Future Video Studio" }
|
|
10
|
+
]
|
|
11
|
+
keywords = ["mcp", "model-context-protocol", "ai-video", "video", "agents"]
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Development Status :: 3 - Alpha",
|
|
14
|
+
"Intended Audience :: Developers",
|
|
15
|
+
"License :: OSI Approved :: MIT License",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"Programming Language :: Python :: 3.11",
|
|
18
|
+
"Programming Language :: Python :: 3.12",
|
|
19
|
+
"Programming Language :: Python :: 3.13",
|
|
20
|
+
"Topic :: Multimedia :: Video",
|
|
21
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
22
|
+
]
|
|
23
|
+
dependencies = [
|
|
24
|
+
"mcp>=1.26.0",
|
|
25
|
+
"uvicorn>=0.30.0",
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
[project.urls]
|
|
29
|
+
Homepage = "https://future.video"
|
|
30
|
+
Documentation = "https://future.video/api-docs"
|
|
31
|
+
Repository = "https://github.com/ariadne-coil/fvs-mcp"
|
|
32
|
+
Issues = "https://github.com/ariadne-coil/fvs-mcp/issues"
|
|
33
|
+
|
|
34
|
+
[project.scripts]
|
|
35
|
+
fvs-mcp-server = "fvs_mcp_server.server:main"
|
|
36
|
+
|
|
37
|
+
[project.optional-dependencies]
|
|
38
|
+
dev = [
|
|
39
|
+
"build>=1.3.0",
|
|
40
|
+
"pytest>=9.0.0",
|
|
41
|
+
"twine>=6.2.0",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[build-system]
|
|
45
|
+
requires = ["hatchling"]
|
|
46
|
+
build-backend = "hatchling.build"
|
|
47
|
+
|
|
48
|
+
[tool.hatch.build.targets.wheel]
|
|
49
|
+
packages = ["src/fvs_mcp_server"]
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "video.future/future-video-studio",
|
|
4
|
+
"title": "Future Video Studio",
|
|
5
|
+
"description": "Create and manage cinematic AI video renders through the Future Video Studio Agent API.",
|
|
6
|
+
"repository": {
|
|
7
|
+
"url": "https://github.com/ariadne-coil/fvs-mcp",
|
|
8
|
+
"source": "github",
|
|
9
|
+
"id": "ariadne-coil/fvs-mcp"
|
|
10
|
+
},
|
|
11
|
+
"websiteUrl": "https://future.video",
|
|
12
|
+
"icons": [
|
|
13
|
+
{
|
|
14
|
+
"src": "https://future.video/visuals/FutureVideoIcon.png",
|
|
15
|
+
"mimeType": "image/png"
|
|
16
|
+
}
|
|
17
|
+
],
|
|
18
|
+
"version": "0.1.1",
|
|
19
|
+
"remotes": [
|
|
20
|
+
{
|
|
21
|
+
"type": "streamable-http",
|
|
22
|
+
"url": "https://mcp.future.video/mcp",
|
|
23
|
+
"headers": [
|
|
24
|
+
{
|
|
25
|
+
"name": "X-FVS-Agent-Key",
|
|
26
|
+
"description": "Optional Future Video Studio Agent API key from Settings > Agent API Access. Omit for Link paid quote mode.",
|
|
27
|
+
"isRequired": false,
|
|
28
|
+
"isSecret": true
|
|
29
|
+
}
|
|
30
|
+
]
|
|
31
|
+
}
|
|
32
|
+
],
|
|
33
|
+
"packages": [
|
|
34
|
+
{
|
|
35
|
+
"registryType": "pypi",
|
|
36
|
+
"identifier": "future-video-studio-mcp",
|
|
37
|
+
"version": "0.1.1",
|
|
38
|
+
"transport": {
|
|
39
|
+
"type": "stdio"
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
]
|
|
43
|
+
}
|