Acture MCP
Click on "Install 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., "@Acture MCPGenerate a weekly engineering summary for the last week."
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.
Acture MCP
Acture MCP turns raw engineering signals into narrative reports.
It exposes data from your development tools (code, version control, issues, documentation, tasks) via MCP (Model Context Protocol), allowing AI agents to synthesize structured, shareable engineering reports.
GitHub is the first supported source, with more integrations planned.
Demo

Related MCP server: GitHub Health Monitor MCP
Who This Is For
Engineering managers who need weekly or sprint reports
Tech leads who want narrative context, not raw metrics
Teams already using GitHub + Notion
Developers experimenting with MCP-powered workflows
What It Does
Input:
Source code and commits
Pull requests and diffs
Issues and tasks
Documentation
Output:
Weekly engineering summaries with concrete references
Sprint/milestone retrospectives grounded in actual work
Daily standup reports generated from real activity
Any custom report you define via prompts
All stored as structured Notion pages you can share, search, and reference later.
How It Works
┌─────────────────────┐ ┌──────────────┐ ┌────────────────────┐
│ Engineering Signals │───▶│ Acture MCP │───▶│ AI Agent (Claude │
│ (GitHub, etc) │ │ Server │ │ Desktop or others) │
└─────────────────────┘ └──────────────┘ └────────────────────┘
│ │
▼ ▼
┌─────────────┐ ┌─────────────┐
│ Tools: │ │ Prompt: │
│ - Commits │ │ "Create │
│ - Issues │ │ weekly │
│ - PRs │ │ report" │
└─────────────┘ └─────────────┘
│ │
▼ ▼
┌─────────────────────────────────────┐
│ AI synthesizes narrative report │
│ referencing concrete commits, PRs │
└─────────────────────────────────────┘
│
▼
┌────────────┐
│ Notion │
│ Page │
└────────────┘MCP Server — exposes your repo data as structured tools
AI Agent — uses prompts to request reports
AI researches — reads commits, PRs, issues, docs via tools
AI writes — generates narrative report with specific references
Published to Notion — structured, shareable, searchable
Query anytime — ask follow-up questions about the report
Installation
npm install -g acture-mcpOr clone and install locally:
git clone https://github.com/vkhafizov/acture-mcp.git
cd acture-mcp
npm install
npm linkQuick Setup
One command to configure everything:
acture-mcp initThis interactive setup will ask for:
GitHub token — for API access (stored encrypted)
Repository — the repo to analyze (format:
owner/repo)Local path — where to sync the repo locally
Documentation path — local directory with project docs (optional, for doc search)
Notion integration — optional, for publishing reports
Then sync your repository:
acture-mcp syncThis clones/pulls the repo to your local path for fast code search.
Configure your Agent. Example for Claude Desktop:
Add to your Claude Desktop config (claude_desktop_config.json):
If installed via npm (global):
{
"mcpServers": {
"acture-mcp": {
"command": "npx",
"args": ["acture-mcp-server"]
}
}
}If installed locally (clone):
{
"mcpServers": {
"acture-mcp": {
"command": "node",
"args": ["path to acture-mcp/bin/acture-mcp-server"]
}
}
}Config locations:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%/Claude/claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
Restart Claude Desktop. You should see the tools and prompts available.
Usage
1. Request a Report
In Claude Desktop, use one of the built-in prompts:
/weekly_report — Generate weekly engineering summary
"Create a report covering what the team shipped this week, including specific PRs and their impact."
/milestone_report — Sprint/milestone retrospective
"Summarize the sprint: what was planned, what delivered, blockers encountered, and lessons learned."
/standup_report — Daily standup summary
"Capture today's completed work, current progress, and any blockers."
2. The AI Does Research
The AI will automatically:
Call
repo_metricsfor activity dataSearch commits and PRs via
search_codebaseList recent issues with
list_issuesRead specific issue details with
read_issueSearch documentation with
search_doc(if docs path configured)
It finds the actual work — concrete commits, real PRs, specific issues.
3. Review and Publish
The AI presents findings and asks:
"Any specific highlights you want to emphasize?"
"Shall I publish this to Notion?"
Say yes, and it calls publish_notion_report — your report is live.
4. Query Later
Ask follow-up questions about any saved report:
"What blockers did we have in last week's report?"
"Show me the milestone report from January 15th"
The AI uses read_notion_reports to fetch and explain previous reports.
Available Tools
Acture MCP exposes the following MCP tools to your AI agent:
Tool | Purpose |
| Search commits, PRs, issues, or code |
| List GitHub issues with filters |
| Get full issue details and comments |
| Find PRs linked to an issue |
| Engineering metrics and DORA data |
| Search documentation with fuzzy matching |
| Read full documentation file |
| Publish report to Notion |
| List or fetch saved reports |
Available Prompts
Three specialized prompts guide report generation:
Prompt | Best For |
| 7-day summaries of shipped features, fixes, blockers |
| Sprint retrospectives with epics, velocity, learnings |
| Daily sync with yesterday/today/blockers |
Customizing Prompts
Prompts are editable .txt files in src/server/prompts/:
weekly-report.txt— Weekly report instructionsmilestone-report.txt— Milestone review instructionsstandup-report.txt— Standup report instructions
Edit these to change how reports are generated. Restart Claude Desktop to apply changes.
Report Structure
Reports are flexible. The AI includes sections it has data for:
Narrative overview — The story of the period
Key accomplishments — Specific features, fixes, improvements
Contributors — Who did what
Impact — Why the work matters
Blockers — Current impediments (if any)
Metrics — Numbers in context (not standalone)
Looking ahead — Next priorities
Storage
Published reports are tracked locally in:
~/.config/acture-mcp/notion-reports.json (Linux)
~/Library/Application Support/... (macOS)
%APPDATA%/acture-mcp/... (Windows)Stores: ID, URL, title, template type, creation date. Last 100 reports kept.
Commands
acture-mcp init # Configure (token, repo, Notion)
acture-mcp sync # Clone/pull repository
acture-mcp status # Check configuration and sync statusRequirements
Node.js 16+
git
GitHub account (for API token)
Notion account (optional, for publishing)
Claude Desktop or other MCP-compatible agent
Security
GitHub token stored encrypted (AES-256-CBC)
Notion token stored encrypted
All data stays local except Notion API calls
License
Apache License 2.0
Contributing & Collaboration
Acture MCP is under active development. Issues, forks, and contributions are welcome.
Open an issue for questions, ideas, or integration requests — this is the preferred starting point.
Forking is encouraged, especially for new data sources, MCP tools, or report styles.
Small, focused PRs and documentation improvements are appreciated.
Paid Pilots
If you want Acture MCP customized, extended, or implemented in your team, I’m open to paid pilots and design partnerships.
Contact via GitHub issues or email: khafizov.vr@gmail.com
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vkhafizov/acture-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server