Acture MCP
Turns raw engineering signals into narrative reports by exposing GitHub data via MCP, enabling AI agents to generate structured, shareable engineering summaries.
README
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

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-mcp
Or clone and install locally:
git clone https://github.com/vkhafizov/acture-mcp.git
cd acture-mcp
npm install
npm link
Quick Setup
One command to configure everything:
acture-mcp init
This 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 sync
This 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.json - Windows:
%APPDATA%/Claude/claude_desktop_config.json - Linux:
~/.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 data - Search commits and PRs via
search_codebase - List recent issues with
list_issues - Read specific issue details with
read_issue - Search 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_codebase |
Search commits, PRs, issues, or code |
list_issues |
List GitHub issues with filters |
read_issue |
Get full issue details and comments |
linked_prs |
Find PRs linked to an issue |
repo_metrics |
Engineering metrics and DORA data |
search_doc |
Search documentation with fuzzy matching |
read_doc |
Read full documentation file |
publish_notion_report |
Publish report to Notion |
read_notion_reports |
List or fetch saved reports |
Available Prompts
Three specialized prompts guide report generation:
| Prompt | Best For |
|---|---|
weekly_report |
7-day summaries of shipped features, fixes, blockers |
milestone_report |
Sprint retrospectives with epics, velocity, learnings |
standup_report |
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 status
Requirements
- 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
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。