You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fetches 7-day historical crypto data (price, volume) via Free Crypto Coin Data MCP server and then renders a Plainly "Media / Abstract" square video summarizing stats.
- Valid API keys from [Free Crypto Coin Data](https://smithery.ai/server/@Liam8/free-coin-price-mcp) and [Plainly Videos](https://smithery.ai/server/@plainly-videos/mcp-server).
17
+
18
+
## Getting started
19
+
20
+
Create a `.env` file from `.env.example` and fill in your API keys.
21
+
```bash
22
+
cp .env.example .env
23
+
```
24
+
25
+
Go to [Plainly Videos](https://smithery.ai/server/@plainly-videos/mcp-server) and [Free Crypto Coin Data](https://smithery.ai/server/@Liam8/free-coin-price-mcp) to get your API keys and `profile`, by clicking on the TypeScript under the Connect tab and copying the values from there into your `.env` file.
26
+
27
+
## Usage
28
+
29
+
Values for coin are hard-coded in the `src/constants.ts` as `bitcoin`; modify as needed (e.g. change `id` to another coin). You can also extend the code to accept command-line arguments for dynamic coin selection.
30
+
31
+
Run the example:
32
+
33
+
```bash
34
+
pnpm install
35
+
pnpm build
36
+
pnpm start
37
+
```
38
+
39
+
On success, you will get a response message, and you can visit the [Render list page](https://app.plainlyvideos.com/dashboard/renders) to track status of your video render.
0 commit comments