- Home
- MCP servers
- DevRecord
DevRecord
- javascript
3
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"seenbefore-devrecord": {
"command": "node",
"args": [
"C:\\PATH\\TO\\PARENT\\FOLDER\\DevRecord\\build\\index.js"
]
}
}
}DevRecord is an MCP server that provides template-based recording for conversations. It helps you capture, structure, and save dialogue content using predefined templates like meeting records, project summaries, learning notes, and daily standups, making it easy to produce consistent documentation from ongoing chats.
How to use
You interact with the DevRecord MCP server through an MCP client. When you tell the model to record something with DevRecord, the server lists available templates, selects the best fit for the conversation, fetches the full template content, and then generates a markdown record saved under the generated documents directory.
Key steps your client will perform automatically after you request recording are: the system fetches all templates, chooses the right one based on your chat, retrieves the detailed template, summarizes the conversation according to the template, and writes a markdown document to the project’s src/record/ directory.
How to install
Prerequisites you need before installing DevRecord are Node.js (version 16 or newer; 18 is recommended) and npm.
# 1) Clone the project
git clone https://github.com/seenbefore/DevRecord.git
cd DevRecord
# 2) Install dependencies
npm install
# 3) Build the project
npm run build
Additional setup for MCP client usage
Configure your MCP client to run DevRecord as a local (stdio) server. Use the command and path to the built entry point as shown.
{
"mcpServers": {
"devrecord": {
"command": "node",
"args": ["C:\\PATH\\TO\\PARENT\\FOLDER\\DevRecord\\build\\index.js"]
}
}
}
Available tools
get_template_list
Fetches all available recording templates so you can choose the right one for your conversation.
get_template_detail
Fetches the full content of a specific template, allowing you to apply its structure to the conversation and generate the final record.