streamable-httpMITupdated 12d ago
Read-only Model Context Protocol access to everything Mediawork publishes publicly: the directory of post-production and distribution vendors, the FAQ, the blog, and subscription plans.
What can you do with Mediawork?
Mediawork MCP server
Read-only Model Context Protocol access to everything Mediawork publishes publicly: the directory of post-production and distribution vendors, the FAQ, the blog, and subscription plans.
Connector URL: https://mcp.mediawork.io/mcp — Streamable HTTP, no authentication, no sign-up.
Listed in the official MCP Registry as io.mediawork/mediawork.
Connect it
Claude Code:
claude mcp add --transport http mediawork https://mcp.mediawork.io/mcp
Anything that takes a JSON config:
{
"mcpServers": {
"mediawork": {
"type": "http",
"url": "https://mcp.mediawork.io/mcp"
}
}
}
Tools
| Tool | What it does |
|---|---|
search |
One query across the directory, FAQ and blog, returning {id, title, url} |
fetch |
Read one record in full, by an id from search |
search_facilities |
The vendor directory, filtered by service and place |
get_facility |
A vendor's full public profile |
list_services |
The service taxonomy, for resolving a filter |
list_places |
Cities, states and countries with vendors in them |
search_faq |
Published FAQ entries |
list_blog_posts / get_blog_post |
The blog |
get_plans |
Subscription plans and pricing |
search + fetch are the generic pair some clients require; the dedicated tools give richer,
filterable results where a client can use them.
Directory questions usually chain: list_services or list_places to resolve a filter, then
search_facilities, then get_facility. Every result carries its canonical www.mediawork.io URL
so an agent can cite the source.
Read-only, structurally
The deployment holds exactly one environment variable, APP_API_URL, and every byte it serves comes
from https://app.mediawork.io/api/www/* — the same public contract the marketing site consumes.
There are no database credentials and no write path, so "read-only" is a property of the
deployment's shape rather than a promise in a comment.
Contributing
Setup, the test commands and the house conventions are in CONTRIBUTING.md.
Licence
MIT © Screen Arts Limited.
Install
Add Mediawork to your client. Pick the one you use.
claude mcp add --transport http mediawork https://mcp.mediawork.io/mcpcodex mcp add mediawork --url https://mcp.mediawork.io/mcp{
"mcpServers": {
"mediawork": {
"url": "https://mcp.mediawork.io/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"mediawork": {
"type": "http",
"url": "https://mcp.mediawork.io/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"mediawork": {
"url": "https://mcp.mediawork.io/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mediawork": {
"serverUrl": "https://mcp.mediawork.io/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
6 tools
Mediawork exposes 6 tools to a connected agent.
- search_facilities
- The vendor directory, filtered by service and place
- get_facility
- A vendor's full public profile
- list_services
- The service taxonomy, for resolving a filter
- list_places
- Cities, states and countries with vendors in them
- search_faq
- Published FAQ entries
- get_plans
- Subscription plans and pricing
Score
75 / 100
Good
- Documentation22/25
- Maintenance19/25
- Trust16/20
- Capability6/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 5 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 6 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.1Latest | Aug 7, 2026 |
| 0.1.0 | Jul 22, 2026 |