MCP Grareco
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP Grarecoconvert this article about climate change to a timeline graphic recording"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Grareco
This is an MCP server for generating graphic recordings. It utilizes the functions of the MCP protocol to convert the contents of any URL or string into graphic recordings.
Components
Tools
echoA simple tool that echoes back input messages
input:
message(string): The message to echo back.
Returns: the text containing the echo message.
printEnvShow all environment variables
Helps in debugging MCP server configuration
Input: None
Returned value: A JSON string of all environment variables
webToGrarecoGet the website from the URL and convert it to HTML in graphic recording format
input:
url(string): The website URL to convert.promptType(enum: "standard" | "elementary" | "timeline", default: "standard"): The prompt type to use (standard, elementary, timeline)
Return value: The path to save the generated HTML file.
Progress notifications sent during processing
textToGrarecoConvert text to HTML in graphic recording format
input:
text(string): The text to convert.promptType(enum: "standard" | "elementary" | "timeline", default: "standard"): The prompt type to use (standard, elementary, timeline)
Return value: The path to save the generated HTML file.
Progress notifications sent during processing
Logging
The server sends random-leveled log messages every 15 seconds, eg:
{
"method": "notifications/message",
"params": {
"level": "info",
"data": "Info-level message"
}
}Related MCP server: ai-research-assistant-mcp
How to use
Running locally
# インストール
npm install
# ビルド
npm run build
# 実行(STDIOモード)
npm run start
# 実行(SSEモード)
npm run start:sseUse with Claude Desktop
Add the following to cline_mcp_settings.json :
Example 1:
{
"mcpServers": {
"grareco": {
"command": "npx",
"args": [
"-y",
"mcp_grareco"
]
}
}
}Example 2:
{
"mcpServers": {
"grareco": {
"url": "http://localhost:3000/sse",
"headers": {},
"timeout": 900
}
}
}Related MCP Connectors
MCP server for generating rough-draft project plans from natural-language prompts.
MCP server for RiverScript, an AI transcription platform - fetches transcripts shared via a link.
An MCP server that integrates with Discord to provide AI-powered features.
An MCP server that used to create notes
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceAn MCP server that enables generating scripts based on specified topics and keywords, while also providing functionality to store and summarize notes.1-
- FlicenseCqualityDmaintenanceAn MCP server that provides tools, resources, and prompts for reading, writing, and summarizing research notes stored in a local flat-file database.2-
- FlicenseNot gradedqualityBmaintenanceMCP server that converts PDF, video, web, and audio inputs into structured Markdown notes with support for checkpointing, batch processing, and Obsidian integration.-
- AlicenseAqualityDmaintenanceMCP server that converts Mermaid diagrams to styled Excalidraw files, saving them directly to disk without token overhead.2MIT