teamToken Media
Generate images and video with one teamToken account: Veo, Seedance, Kling, Nano Banana, GPT Image and Grok, 51 models in total.
Community: Submitted by a user or imported; check the owner before granting accessOnlineNo sign-inGlobalFreeRead-only
What it can do
- List Models: List every image and video model with its price. Call this before generating when the user has not named a model, and to check what a model costs: prices are per image for image models an
- Generate Image: Generate an image and return it. Blocks until the picture is ready (seconds, occasionally up to a few minutes) — do not poll after calling this. To edit or restyle existing pictures, o
- Edit Image: Edit, restyle or extend existing pictures, or reuse the same character in a new scene. Give the source pictures in `images` (https URLs, data-URLs or bare base64 — one kind per request, do
What data it sees
Do you need an account
No: the server works without sign-in
Generate images and video with one teamToken account: Veo, Seedance, Kling, Nano Banana, GPT Image and Grok, 51 models in total.
Tools
list_modelsshows every model with its price, per image or per second of video.generate_imageandedit_imagereturn the picture in the same call.generate_videoandextend_videostart a job and hand back its ID.get_jobfetches the result once it is ready, since video takes minutes rather than seconds.get_balancelets the agent check whether the account can pay for the next run.
Connect
Sign in with your teamToken account when you add the server, or use an API key from app.teamtoken.store. You pay per generation, with no subscription.
Server tool list (7)
Raw names from tools/list. Only developers need these.
| list_models | List every image and video model with its price. Call this before generating when the user has not named a model, and to check what a model costs: prices are per image for image models and per second of output for video models. Takes no arguments and spends nothing. |
| generate_image | Generate an image and return it. Blocks until the picture is ready (seconds, occasionally up to a few minutes) — do not poll after calling this. To edit or restyle existing pictures, or to keep the same character across images, pass them in `images` and use edit_image instead. |
| edit_image | Edit, restyle or extend existing pictures, or reuse the same character in a new scene. Give the source pictures in `images` (https URLs, data-URLs or bare base64 — one kind per request, do not mix) and describe the change in `prompt`. Blocks and returns the result, like generate_image. |
| generate_video | Start a video generation. Returns a job id immediately — video takes 30 seconds to a few minutes, so you MUST call get_job with that id afterwards (wait ~30 seconds before the first check) and keep checking until it reports completed. Do not call this tool again while a job is running: each call costs money. |
| extend_video | Continue an existing video, adding more seconds to its end. Same asynchronous contract as generate_video: returns a job id to poll with get_job. |
| get_job | Check a generation job by its id and get the result when ready. Works for both image jobs (id starts with img_) and video jobs (vid_). While status is queued or processing, wait ~30 seconds and call again. |
| get_balance | Check the account balance in USD. Call it before an expensive generation, and after a payment error, so you can tell the user how much is missing. |