@z7589xxz758/briefly-mcp-server
v0.1.0
Published
MCP server for Briefly Builder documents and review rubrics.
Maintainers
Readme
briefly-mcp-server
MCP server for Briefly Builder and Briefly Review.
It exposes tools for creating structured Briefly project briefs, parsing/exporting Briefly MDX, extracting document structure, and preparing review prompts from rubrics.
Quick Start
Install globally:
npm install -g @z7589xxz758/briefly-mcp-serverThen point your MCP client at the installed server:
briefly-mcp-serverPackage page: https://www.npmjs.com/package/@z7589xxz758/briefly-mcp-server
Use With MCP Clients
Global install config:
{
"mcpServers": {
"briefly": {
"command": "briefly-mcp-server"
}
}
}Or launch with npx:
{
"mcpServers": {
"briefly": {
"command": "npx",
"args": ["-y", "@z7589xxz758/briefly-mcp-server"]
}
}
}Local Development
From the Animark repository root:
npm install
npm --silent run briefly:mcpMCP client config for local development:
{
"mcpServers": {
"briefly": {
"command": "npm",
"args": ["--silent", "run", "briefly:mcp"],
"cwd": "/absolute/path/to/Animark"
}
}
}Tools
briefly_list_rubricsbriefly_get_rubricbriefly_extract_structurebriefly_review_assetbriefly_list_builder_blocksbriefly_create_briefbriefly_parse_briefbriefly_add_sectionbriefly_update_sectionbriefly_export_briefbriefly_export_pdf
briefly_export_pdf uses a local Chrome or Chromium executable in headless mode. If Chrome is not in a standard location, set CHROME_PATH or pass chromePath.
Resources
briefly://rubricsbriefly://rubrics/course-planningbriefly://rubrics/brand-guidelinesbriefly://rubrics/document-claritybriefly://builder/blocksbriefly://builder/schema
Review Model
The server does not call OpenAI, Anthropic, or any external LLM API. briefly_review_asset fetches and cleans the asset, loads the selected rubric, and returns a review-ready prompt for the host MCP client to reason over.
