Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here
OSS 120B Autonomous Project Manager MCP logo

OSS 120B Autonomous Project Manager MCP

CryptoJym/oss-120b-pm-mcp
0 starsMITUpdated 2025-08-22Community

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

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

README.md

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: ``javascript 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.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Developer Tools servers.