@crewone/mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| CREWONE_API_KEY | No | Optional API key for paid tools. Generate at https://crewone.ai/dashboard/settings/api. | |
| CREWONE_API_BASE | No | Override base URL for local dev/staging. Default: https://crewone.ai | https://crewone.ai |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_equipmentA | Search the CrewOne database of Taipei film equipment rental rates (1,187 SKUs covering camera bodies, lenses, lighting, grip, sound, monitors). Returns matching items with day rates in TWD. Free to use; no API key required. |
| search_studiosA | Search the CrewOne database of Taiwan studios (561 studios with real rates and amenities). Returns matching studios with hourly / 4hr / day rates and key features (size, ceiling height, lighting, power, parking). Free to use. |
| get_photographerA | Look up a single photographer in the CrewOne 69-photographer style reference library. Returns hallmarks (lighting / palette / composition), AI prompt tokens for image generators, and representative works. Use this when a user asks for a specific photographer style (e.g. "Tim Walker style portrait", "蜷川實花 lighting"). |
| list_photographersB | Browse the 69-photographer style reference library. Filter by region, cluster (lighting style group), or country. |
| get_directorA | Look up a single director in the CrewOne 30-MV-director and Taiwan-commercial-director reference library. Returns AI prompt tokens for video generation models (Veo, Kling, Higgsfield), representative works, and signature techniques. |
| list_directorsB | Browse the director reference library. Filter by region or genre. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool targets a distinct resource type and action: searching rental databases for equipment/studios versus retrieving/browsing style references for photographers/directors. No overlap exists between the two categories or between individual/browse operations.
All tool names follow the verb_noun pattern in snake_case: search_* for database queries, get_* for single-item lookups, and list_* for browsing. The verbs are semantically appropriate and the naming style is uniform.
With exactly six tools, the server is tightly scoped to its purpose (film production resource lookup). Each tool has a clear role, and the count fits well within the ideal 3-15 range.
The tool surface covers the two primary domains (rental rates and style references) adequately. For the reference library, both individual lookup and browsing are provided; for equipment and studios, search fulfills the querying needs. No obvious dead ends or missing operations for a read-only reference server.