OSS 120B Autonomous Project Manager MCP

OSS 120B Autonomous Project Manager MCP

Enables autonomous project management with intelligent synchronization between GitHub, Notion, and Motion, including pattern recognition, self-optimization, and automated field population.

Category
Visit Server

README

OSS 120B Autonomous Project Manager MCP Server

An MCP (Model Context Protocol) server that provides autonomous project management capabilities powered by the OSS 120B model. This server enables intelligent synchronization between GitHub, Notion, and Motion, with pattern recognition, self-optimization, and automated field population.

Features

  • πŸ€– Autonomous Project Analysis - Deep analysis of GitHub repositories with health scoring
  • πŸ”„ Smart Synchronization - Intelligent sync between GitHub, Notion, and Motion platforms
  • 🧠 Pattern Recognition - Detect workflow patterns and suggest optimizations
  • πŸ“Š Auto Field Population - Automatically populate Notion fields from GitHub data
  • πŸ“ˆ Self-Optimization - Weekly analysis and improvement recommendations
  • πŸ’Ύ Memory Integration - Persistent learning through Mem0 integration
  • 🎯 Prime Directive - Built-in operational guidelines for safe autonomy

Installation

Quick Setup (Recommended)

# Clone the repository
git clone https://github.com/CryptoJym/oss-120b-pm-mcp.git
cd oss-120b-pm-mcp

# Run the setup script (configures both Claude Code and Cursor)
./setup-oss120b-mcp.sh

Manual Installation

# Clone and build
git clone https://github.com/CryptoJym/oss-120b-pm-mcp.git
cd oss-120b-pm-mcp
npm install
npm run build

# Configure your MCP client manually (see Configuration section)

Configuration

Environment Variables

Create a .env file with your API keys:

# Required
OLLAMA_BASE_URL=http://localhost:11434
OSS_MODEL=gpt-oss:120b
MEM0_API_KEY=your_mem0_api_key

# Optional (for full functionality)
MOTION_API_KEY=your_motion_api_key
NOTION_API_KEY=your_notion_api_key
GITHUB_TOKEN=your_github_token

# Optional settings
AUTO_SYNC_ON_START=false
LOG_LEVEL=info

MCP Configuration

For Claude Code

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "oss-120b-pm": {
      "command": "node",
      "args": ["/path/to/oss-120b-pm-mcp/dist/index.js"],
      "env": {
        "OLLAMA_BASE_URL": "http://localhost:11434",
        "OSS_MODEL": "gpt-oss:120b",
        "MEM0_API_KEY": "your_mem0_api_key",
        "GITHUB_TOKEN": "your_github_token",
        "NOTION_API_KEY": "your_notion_api_key",
        "MOTION_API_KEY": "your_motion_api_key"
      }
    }
  }
}

For Cursor

Add to ~/Library/Application Support/Cursor/User/mcp/config.json:

{
  "mcpServers": {
    "oss-120b-pm": {
      "command": "node",
      "args": ["/path/to/oss-120b-pm-mcp/dist/index.js"],
      "env": {
        "OLLAMA_BASE_URL": "http://localhost:11434",
        "OSS_MODEL": "gpt-oss:120b",
        "MEM0_API_KEY": "your_mem0_api_key",
        "GITHUB_TOKEN": "your_github_token",
        "NOTION_API_KEY": "your_notion_api_key",
        "MOTION_API_KEY": "your_motion_api_key"
      }
    }
  }
}

Available Tools

analyze_project

Analyze a GitHub repository and extract project information autonomously.

{
  repo_owner: string,      // Repository owner (username or org)
  repo_name: string,       // Repository name
  deep_analysis?: boolean  // Include README, issues, PRs analysis
}

sync_projects

Run autonomous synchronization between GitHub, Notion, and Motion.

{
  mode?: 'full' | 'quick' | 'changes_only',  // Sync mode
  dry_run?: boolean                           // Preview without applying
}

detect_patterns

Detect patterns in project management activities and suggest optimizations.

{
  days_back?: number,      // Number of days to analyze (default: 7)
  min_confidence?: number  // Minimum confidence threshold (0-1)
}

populate_fields

Autonomously populate missing Notion fields based on GitHub data.

{
  project_id: string,      // Notion project ID or GitHub repo full name
  auto_approve?: boolean   // Auto-approve high confidence suggestions
}

generate_summary

Generate daily/weekly summary report of PM activities.

{
  period?: 'daily' | 'weekly' | 'custom',
  start_date?: string,     // ISO format for custom period
  end_date?: string        // ISO format for custom period
}

self_optimize

Run self-optimization analysis and get improvement recommendations.

{
  include_metrics?: boolean,      // Include detailed performance metrics
  apply_recommendations?: boolean // Automatically apply safe recommendations
}

query_pm

Query the PM agent with natural language for any project management task.

{
  query: string,           // Natural language query
  context?: object         // Additional context
}

get_prime_directive

Retrieve the current prime directive and operational parameters.

{
  section?: 'identity' | 'capabilities' | 'boundaries' | 'patterns' | 'mcp_integration' | 'all'
}

set_automation_rules

Configure automation rules and thresholds.

{
  stale_threshold_days?: number,
  auto_populate_confidence?: number,
  pattern_detection_frequency?: 'hourly' | 'daily' | 'weekly'
}

Usage Examples

Basic Project Analysis

// Analyze a repository
await mcp.call('analyze_project', {
  repo_owner: 'utlyze',
  repo_name: 'fcra-compliance-system',
  deep_analysis: true
});

Run Project Sync

// Quick sync of active projects
await mcp.call('sync_projects', {
  mode: 'quick',
  dry_run: false
});

Detect Workflow Patterns

// Find patterns in last 2 weeks
await mcp.call('detect_patterns', {
  days_back: 14,
  min_confidence: 0.8
});

Generate Daily Summary

// Get today's summary
await mcp.call('generate_summary', {
  period: 'daily'
});

Prime Directive

The OSS 120B PM operates under a comprehensive prime directive that ensures:

  • Autonomous Actions: Updates timestamps, calculates health scores, syncs descriptions
  • Approval Required: Archiving projects, major status changes, budget modifications
  • Prohibited: Deleting data, modifying code, sharing credentials

View the full prime directive:

await mcp.call('get_prime_directive', { section: 'all' });

Architecture

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚   OSS 120B Model    β”‚
β”‚  (Local via Ollama) β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
           β”‚
     β”Œβ”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”
     β”‚ MCP Serverβ”‚
     β””β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”˜
           β”‚
    β”Œβ”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”
    β”‚   Engines   β”‚
    β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
    β”‚ β€’ Analysis  β”‚
    β”‚ β€’ Sync      β”‚
    β”‚ β€’ Patterns  β”‚
    β”‚ β€’ Memory    β”‚
    β””β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”˜
           β”‚
    β”Œβ”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”
    β”‚    APIs     β”‚
    β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
    β”‚ β€’ GitHub    β”‚
    β”‚ β€’ Notion    β”‚
    β”‚ β€’ Motion    β”‚
    β”‚ β€’ Mem0      β”‚
    β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

Development

# Clone the repository
git clone https://github.com/CryptoJym/oss-120b-pm-mcp.git
cd oss-120b-pm-mcp

# Install dependencies
npm install

# Run in development mode
npm run dev

# Build for production
npm run build

# Run tests
npm test

Requirements

  • Node.js >= 16.0.0
  • Ollama with gpt-oss:120b model installed
  • API keys for integrated services (GitHub, Notion, Motion, Mem0)

License

MIT

Contributing

Contributions are welcome! Please read our contributing guidelines and submit pull requests to our repository.

Support

For issues and feature requests, please use the GitHub issue tracker.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured