local-only server
The server can only run on the client’s local machine because it depends on local resources.
Integrations
Weekly Report System
The Weekly Report System is designed to facilitate the creation and management of weekly reports, which are stored in the reports
directory with timestamps for easy tracking.
Setup
To get started with the Weekly Report System, follow these steps:
- Install Dependencies:
Ensure you have all the necessary Python packages by running:Copy
- Run the MCP Server:
Start the MCP server to enable report creation:Copy
Usage
The system offers two methods for creating weekly reports:
Method 1: Direct Python Script
Create a weekly report by executing the create_weekly_report.py
script:
This script utilizes the write_weekly_report
function from weekly_report_server.py
to generate the report content.
Method 2: MCP Tool (Requires VSCode with Claude Extension)
Leverage the MCP server functionality with the Claude extension in VSCode:
- MCP Configuration:
Ensure the MCP settings are correctly configured in
.fastmcp.toml
andmcp.json
. - VSCode Extension Configuration:
Verify the extension settings in:Copy
Once configured, use the write_weekly_report
tool from the MCP server to create reports directly within VSCode.
Report Format
Reports are stored in the reports
directory with filenames formatted as weekly_report_YYYYMMDD_HHMMSS.txt
.
The recommended structure for reports is as follows:
Project Files
weekly_report_server.py
: The core server file that defines thewrite_weekly_report
function and sets up the MCP server.create_weekly_report.py
: A script that calls thewrite_weekly_report
function to generate a report.test_weekly_report.py
: A testing script for validating thewrite_weekly_report
function.reports/
: The directory where all generated reports are saved.
Additional Information
For further assistance or inquiries, please refer to the project's documentation or contact the development team.
This server cannot be installed
A simple MCP server that allows users to write and save weekly reports to text files in a dedicated reports directory.