mode-manager-mcp


Namemode-manager-mcp JSON
Version 0.1.19 PyPI version JSON
download
home_pageNone
SummaryMode Manager MCP: Server for managing VS Code .chatmode.md and .instructions.md files (GitHub Copilot prompts)
upload_time2025-08-10 14:20:41
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseMIT
keywords chatmode github-copilot instruction mcp mode-manager prompts vscode
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <picture>
  <source media="(prefers-color-scheme: dark)" srcset="remember-new-logo-complete-white.svg">
  <source media="(prefers-color-scheme: light)" srcset="remember-new-logo-complete-black.svg">
  <img alt="GitHub Copilot Memory Tool" src="https://raw.githubusercontent.com/NiclasOlofsson/mode-manager-mcp/refs/heads/main/remember-new-logo-complete-black.svg" width="800">
</picture>


# Meet #remember -- Real Memory for You, Your Team, and Your AI

[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=modemanager&config=%7B%22command%22%3A%22pipx%22%2C%22args%22%3A%5B%22run%22%2C%22mode-manager-mcp%22%5D%7D)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install_Server-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=modemanager&config=%7B%22command%22%3A%22pipx%22%2C%22args%22%3A%5B%22run%22%2C%22mode-manager-mcp%22%5D%7D&quality=insiders)
&nbsp;&nbsp;&nbsp;&nbsp;[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Python 3.8+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)

Mode Manager MCP is an AI-powered memory and context system for developers and teams. It lets you and your team “remember” important facts, preferences, and best practices—so your AI assistant always has the right context, and your team’s knowledge is never lost.

With Mode Manager MCP, you can:
- Instantly store and retrieve personal, team, and language-specific knowledge.
- Share onboarding notes, coding conventions, and project wisdom—right where you work.
- Make your AI assistant smarter, more helpful, and always in sync with your workflow.

## Why “Remember”? (Features & Benefits)

- **Personal AI Memory:** Instantly store preferences, facts, and reminders for yourself—your AI assistant will always know your context.
- **Workspace (Team) Memory:** Share best practices, onboarding notes, and team knowledge directly in the repo. New team members ramp up faster, and everyone stays on the same page.
- **Language-Specific Memory:** Save and retrieve language-specific tips and conventions. Your assistant adapts to each language’s best practices automatically.
- **Natural Language Simplicity:** Just say “remember…”—no config files, no YAML, no technical hurdles.
- **Smarter Coding, Fewer Repeated Questions:** Your team’s memory grows over time, reducing repeated questions and ensuring consistent practices.

&nbsp;  
>&nbsp;  
> **Before this tool**  
> *"Hey Copilot, write me a Python function..."*  
> Copilot: *Gives generic Python code*
>
> **After using `remember`**  
> You: *"Remember I'm a senior data architect at Oatly, prefer type hints, and use Black formatting"*  
> Next conversation: *"Write me a Python function..."*  
> Copilot: *Generates perfectly styled code with type hints, following your exact preferences*  
>&nbsp;  

**Ready to have Copilot that actually remembers you? [Get started now!](#get-it-running-2-minutes)**

## Real-World Examples: Just Say It!

You don’t need special syntax—just talk to Copilot naturally. Mode Manager MCP is extremely relaxed about how you phrase things. 
If it sounds like something you want remembered, it will be!

>&nbsp;  
>**Personal memory**  
> You: *I like detailed docstrings and use pytest for testing.
> (Copilot, keep that in mind.)*  
>
> ---  
>**Team memory**  
> You: *We alw&nbsp;ays use the Oatly data pipeline template and follow our naming conventions.
> (Let’s make sure everyone remembers that.)*
>
> ---  
>**Language-specific memory**
> You: *For Python, use type hints and Black formatting.
> In C#, always use nullable reference types.*  
>&nbsp;  

## Get It Running (2 Minutes)

*If you don't even have `python`, you need to install that first. You can get it at [python.org/downloads](https://www.python.org/downloads/)*

### 1. Install pipx from PyPI
```bash
pip install pipx
```
### 2. Click on the badge for your VS Code

[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=modemanager&config=%7B%22command%22%3A%22pipx%22%2C%22args%22%3A%5B%22run%22%2C%22mode-manager-mcp%22%5D%7D)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install_Server-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=modemanager&config=%7B%22command%22%3A%22pipx%22%2C%22args%22%3A%5B%22run%22%2C%22mode-manager-mcp%22%5D%7D&quality=insiders)

### .. Or manually add it to your VS Code

Add this to your VS Code MCP settings (`mcp.json`):

```json
{
  "servers": {
    "mode-manager": {
      "command": "pipx",
      "args": [
        "run",
        "mode-manager-mcp"
      ]
    }
  }
}
```

That's it! Start chatting with Copilot and use: *"Remember that..."*

### Bonus ..

As a convenience, you can run the following prompt in VS Code to get started in the best way:

>&nbsp;  
>You; */mcp.mode-manager.onboarding*  
>&nbsp;  

This will guide you through the onboarding process, set up your persistent memory, and ensure Copilot knows your preferences from the start.

### For the impatient (and brave) that can't wait for next release ..

If you add this in to your `mcp.json` it will result in `pipx` download and install the latest directly from github, every time. Always bleeding edge .. 

```json
{
  "servers": {
    "mode-manager": {
      "command": "pipx",
      "args": [
        "run",
        "--no-cache",
        "--system-site-packages",
        "--spec",
        "git+https://github.com/NiclasOlofsson/mode-manager-mcp.git",
        "mode-manager-mcp"
      ]
    }
  }
}
```


## Under the Hood: How Memory Magic Happens

Mode Manager MCP is designed to make memory persistent, context-aware, and 
easy to manage—without you having to think about the details. Here’s how 
it works under the hood:

### Memory Scopes

- **Personal Memory:**  
  Stored in a user-specific file (`memory.instructions.md`) in your VS Code prompts directory. This is your private memory—preferences, habits, and facts that follow you across all projects.

- **Workspace (Team) Memory:**  
  Stored in a workspace-level file (also `memory.instructions.md`, but in the workspace’s `.github/instructions` directory). This is shared with everyone working in the same repo, so team conventions and onboarding notes are always available.

- **Language-Specific Memory:**  
  Stored in files like `memory-python.instructions.md`, `memory-csharp.instructions.md`, etc. These are automatically loaded when you’re working in a particular language, so language tips and conventions are always at hand.

### How Memory is Stored

All memory is saved as Markdown files with a YAML frontmatter header, 
making it both human- and machine-readable. Each entry is timestamped and 
neatly organized, so you can always see when and what was remembered. You 
never have to manage these files yourself—Mode Manager MCP automatically 
creates and updates them as you add new memories.

### How Memory is Loaded

Here’s the magic: Mode Manager MCP writes and manages all your memory files, 
but it’s actually the new VS Code Copilot Chat that automatically loads 
them—every single turn. This deep integration means that, every time you send 
a message or ask Copilot for help, your user, workspace, and language memories 
are instantly available to the AI.

Language-specific memory is even smarter: it’s tied to file types using 
the `applyTo` property in the YAML frontmatter (for example, `**/*.py` for Python 
or `**/*.cs` for C#). This means you get the right tips, conventions, and 
reminders only when you’re working in the relevant language or file type—no clutter, 
just the context you need, exactly when you need it.

You never have to worry about context being lost between messages or sessions; your 
memory is always active and available. We’re simply leveraging this new, amazing 
VS Code feature to make your Copilot (and your team) smarter than ever.

### No Special Syntax Needed

There’s no need to remember special commands or keywords—just talk naturally. Mode Manager 
MCP is flexible and understands a wide range of phrasing. You don’t have to say 
“workspace” to store team memory; it recognizes common alternatives like “project,” 
“repo,” or even just describing something as a team convention. Whether you’re 
making a personal note, a team guideline, or a language-specific tip, just say it 
in your own words—Mode Manager MCP figures out what you want to remember and where it belongs.

## Wait, There’s More: Power Prompts & Custom Modes

Context prompting is critical for getting the best results from modern large language models like Copilot. As these models evolve and improve rapidly, so must the prompts and instructions we use with them. That’s why we built this functionality right into Mode Manager MCP—so you can always stay up to date, experiment with new approaches, and make sure your Copilot is as smart and helpful as possible.
>&nbsp;  
>**Want to see what’s available?**  
> You: *Show me the list of available chatmodes from the library.*  
>
>**Ready to try one?**  
> You: *Install the 'Beast Mode' chatmode from the library.*  
>&nbsp;  

Memory is just the beginning—Mode Manager MCP also helps you manage your entire Copilot experience with powerful instructions and chatmodes.

- **Instructions:**  
  Memory is stored as instruction files, but you can create your own instructions for any purpose—personal reminders, team guidelines, or project-specific tips.

- **Chatmodes:**  
  Switch between different “modes” for Copilot, like “Beast Mode” for deep research and coding, or “Architect Mode” for big-picture thinking with attention to critical details. The right system prompt can transform your Copilot from a generic assistant into a true expert for your current task.

- **Prompt Library & File Management:**  
  Access a curated library of professional prompts, and easily create, edit, and organize your own `.chatmode.md` and `.instructions.md` files.


A great Copilot experience isn’t just about memory—it’s about having the right context, the right instructions, and the right mode for every situation.

You have full control over your instructions and chatmodes with easy CLRUD (Create, List, Read, Update, Delete) commands—so you can manage, organize, and evolve your prompts as your needs change. There’s a curated library of high-quality chatmodes and instructions to get you started or inspire your own customizations.

One of the most powerful features is the ability to update your prompts and instructions directly from the online library. This keeps your setup in sync with the latest improvements, best practices, and new ideas—without losing your own custom tweaks. Stay up to date, collaborate with others, and always have the best Copilot experience possible.


## Contributing

Want to help improve this tool? Check out [CONTRIBUTING.md](CONTRIBUTING.md) for development setup and guidelines.

## License

MIT License - see [LICENSE](LICENSE) for details.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "mode-manager-mcp",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "chatmode, github-copilot, instruction, mcp, mode-manager, prompts, vscode",
    "author": null,
    "author_email": "Niclas Olofsson <nicke.olofsson@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/7f/8a/40ee26c31ee10ee11729ccc724884f13a5d73456b105fe807ea38cf1fb92/mode_manager_mcp-0.1.19.tar.gz",
    "platform": null,
    "description": "<picture>\n  <source media=\"(prefers-color-scheme: dark)\" srcset=\"remember-new-logo-complete-white.svg\">\n  <source media=\"(prefers-color-scheme: light)\" srcset=\"remember-new-logo-complete-black.svg\">\n  <img alt=\"GitHub Copilot Memory Tool\" src=\"https://raw.githubusercontent.com/NiclasOlofsson/mode-manager-mcp/refs/heads/main/remember-new-logo-complete-black.svg\" width=\"800\">\n</picture>\n\n\n# Meet #remember -- Real Memory for You, Your Team, and Your AI\n\n[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=modemanager&config=%7B%22command%22%3A%22pipx%22%2C%22args%22%3A%5B%22run%22%2C%22mode-manager-mcp%22%5D%7D)\n[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install_Server-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=modemanager&config=%7B%22command%22%3A%22pipx%22%2C%22args%22%3A%5B%22run%22%2C%22mode-manager-mcp%22%5D%7D&quality=insiders)\n&nbsp;&nbsp;&nbsp;&nbsp;[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![Python 3.8+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)\n\nMode Manager MCP is an AI-powered memory and context system for developers and teams. It lets you and your team \u201cremember\u201d important facts, preferences, and best practices\u2014so your AI assistant always has the right context, and your team\u2019s knowledge is never lost.\n\nWith Mode Manager MCP, you can:\n- Instantly store and retrieve personal, team, and language-specific knowledge.\n- Share onboarding notes, coding conventions, and project wisdom\u2014right where you work.\n- Make your AI assistant smarter, more helpful, and always in sync with your workflow.\n\n## Why \u201cRemember\u201d? (Features & Benefits)\n\n- **Personal AI Memory:** Instantly store preferences, facts, and reminders for yourself\u2014your AI assistant will always know your context.\n- **Workspace (Team) Memory:** Share best practices, onboarding notes, and team knowledge directly in the repo. New team members ramp up faster, and everyone stays on the same page.\n- **Language-Specific Memory:** Save and retrieve language-specific tips and conventions. Your assistant adapts to each language\u2019s best practices automatically.\n- **Natural Language Simplicity:** Just say \u201cremember\u2026\u201d\u2014no config files, no YAML, no technical hurdles.\n- **Smarter Coding, Fewer Repeated Questions:** Your team\u2019s memory grows over time, reducing repeated questions and ensuring consistent practices.\n\n&nbsp;  \n>&nbsp;  \n> **Before this tool**  \n> *\"Hey Copilot, write me a Python function...\"*  \n> Copilot: *Gives generic Python code*\n>\n> **After using `remember`**  \n> You: *\"Remember I'm a senior data architect at Oatly, prefer type hints, and use Black formatting\"*  \n> Next conversation: *\"Write me a Python function...\"*  \n> Copilot: *Generates perfectly styled code with type hints, following your exact preferences*  \n>&nbsp;  \n\n**Ready to have Copilot that actually remembers you? [Get started now!](#get-it-running-2-minutes)**\n\n## Real-World Examples: Just Say It!\n\nYou don\u2019t need special syntax\u2014just talk to Copilot naturally. Mode Manager MCP is extremely relaxed about how you phrase things. \nIf it sounds like something you want remembered, it will be!\n\n>&nbsp;  \n>**Personal memory**  \n> You: *I like detailed docstrings and use pytest for testing.\n> (Copilot, keep that in mind.)*  \n>\n> ---  \n>**Team memory**  \n> You: *We alw&nbsp;ays use the Oatly data pipeline template and follow our naming conventions.\n> (Let\u2019s make sure everyone remembers that.)*\n>\n> ---  \n>**Language-specific memory**\n> You: *For Python, use type hints and Black formatting.\n> In C#, always use nullable reference types.*  \n>&nbsp;  \n\n## Get It Running (2 Minutes)\n\n*If you don't even have `python`, you need to install that first. You can get it at [python.org/downloads](https://www.python.org/downloads/)*\n\n### 1. Install pipx from PyPI\n```bash\npip install pipx\n```\n### 2. Click on the badge for your VS Code\n\n[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=modemanager&config=%7B%22command%22%3A%22pipx%22%2C%22args%22%3A%5B%22run%22%2C%22mode-manager-mcp%22%5D%7D)\n[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install_Server-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=modemanager&config=%7B%22command%22%3A%22pipx%22%2C%22args%22%3A%5B%22run%22%2C%22mode-manager-mcp%22%5D%7D&quality=insiders)\n\n### .. Or manually add it to your VS Code\n\nAdd this to your VS Code MCP settings (`mcp.json`):\n\n```json\n{\n  \"servers\": {\n    \"mode-manager\": {\n      \"command\": \"pipx\",\n      \"args\": [\n        \"run\",\n        \"mode-manager-mcp\"\n      ]\n    }\n  }\n}\n```\n\nThat's it! Start chatting with Copilot and use: *\"Remember that...\"*\n\n### Bonus ..\n\nAs a convenience, you can run the following prompt in VS Code to get started in the best way:\n\n>&nbsp;  \n>You; */mcp.mode-manager.onboarding*  \n>&nbsp;  \n\nThis will guide you through the onboarding process, set up your persistent memory, and ensure Copilot knows your preferences from the start.\n\n### For the impatient (and brave) that can't wait for next release ..\n\nIf you add this in to your `mcp.json` it will result in `pipx` download and install the latest directly from github, every time. Always bleeding edge .. \n\n```json\n{\n  \"servers\": {\n    \"mode-manager\": {\n      \"command\": \"pipx\",\n      \"args\": [\n        \"run\",\n        \"--no-cache\",\n        \"--system-site-packages\",\n        \"--spec\",\n        \"git+https://github.com/NiclasOlofsson/mode-manager-mcp.git\",\n        \"mode-manager-mcp\"\n      ]\n    }\n  }\n}\n```\n\n\n## Under the Hood: How Memory Magic Happens\n\nMode Manager MCP is designed to make memory persistent, context-aware, and \neasy to manage\u2014without you having to think about the details. Here\u2019s how \nit works under the hood:\n\n### Memory Scopes\n\n- **Personal Memory:**  \n  Stored in a user-specific file (`memory.instructions.md`) in your VS Code prompts directory. This is your private memory\u2014preferences, habits, and facts that follow you across all projects.\n\n- **Workspace (Team) Memory:**  \n  Stored in a workspace-level file (also `memory.instructions.md`, but in the workspace\u2019s `.github/instructions` directory). This is shared with everyone working in the same repo, so team conventions and onboarding notes are always available.\n\n- **Language-Specific Memory:**  \n  Stored in files like `memory-python.instructions.md`, `memory-csharp.instructions.md`, etc. These are automatically loaded when you\u2019re working in a particular language, so language tips and conventions are always at hand.\n\n### How Memory is Stored\n\nAll memory is saved as Markdown files with a YAML frontmatter header, \nmaking it both human- and machine-readable. Each entry is timestamped and \nneatly organized, so you can always see when and what was remembered. You \nnever have to manage these files yourself\u2014Mode Manager MCP automatically \ncreates and updates them as you add new memories.\n\n### How Memory is Loaded\n\nHere\u2019s the magic: Mode Manager MCP writes and manages all your memory files, \nbut it\u2019s actually the new VS Code Copilot Chat that automatically loads \nthem\u2014every single turn. This deep integration means that, every time you send \na message or ask Copilot for help, your user, workspace, and language memories \nare instantly available to the AI.\n\nLanguage-specific memory is even smarter: it\u2019s tied to file types using \nthe `applyTo` property in the YAML frontmatter (for example, `**/*.py` for Python \nor `**/*.cs` for C#). This means you get the right tips, conventions, and \nreminders only when you\u2019re working in the relevant language or file type\u2014no clutter, \njust the context you need, exactly when you need it.\n\nYou never have to worry about context being lost between messages or sessions; your \nmemory is always active and available. We\u2019re simply leveraging this new, amazing \nVS Code feature to make your Copilot (and your team) smarter than ever.\n\n### No Special Syntax Needed\n\nThere\u2019s no need to remember special commands or keywords\u2014just talk naturally. Mode Manager \nMCP is flexible and understands a wide range of phrasing. You don\u2019t have to say \n\u201cworkspace\u201d to store team memory; it recognizes common alternatives like \u201cproject,\u201d \n\u201crepo,\u201d or even just describing something as a team convention. Whether you\u2019re \nmaking a personal note, a team guideline, or a language-specific tip, just say it \nin your own words\u2014Mode Manager MCP figures out what you want to remember and where it belongs.\n\n## Wait, There\u2019s More: Power Prompts & Custom Modes\n\nContext prompting is critical for getting the best results from modern large language models like Copilot. As these models evolve and improve rapidly, so must the prompts and instructions we use with them. That\u2019s why we built this functionality right into Mode Manager MCP\u2014so you can always stay up to date, experiment with new approaches, and make sure your Copilot is as smart and helpful as possible.\n>&nbsp;  \n>**Want to see what\u2019s available?**  \n> You: *Show me the list of available chatmodes from the library.*  \n>\n>**Ready to try one?**  \n> You: *Install the 'Beast Mode' chatmode from the library.*  \n>&nbsp;  \n\nMemory is just the beginning\u2014Mode Manager MCP also helps you manage your entire Copilot experience with powerful instructions and chatmodes.\n\n- **Instructions:**  \n  Memory is stored as instruction files, but you can create your own instructions for any purpose\u2014personal reminders, team guidelines, or project-specific tips.\n\n- **Chatmodes:**  \n  Switch between different \u201cmodes\u201d for Copilot, like \u201cBeast Mode\u201d for deep research and coding, or \u201cArchitect Mode\u201d for big-picture thinking with attention to critical details. The right system prompt can transform your Copilot from a generic assistant into a true expert for your current task.\n\n- **Prompt Library & File Management:**  \n  Access a curated library of professional prompts, and easily create, edit, and organize your own `.chatmode.md` and `.instructions.md` files.\n\n\nA great Copilot experience isn\u2019t just about memory\u2014it\u2019s about having the right context, the right instructions, and the right mode for every situation.\n\nYou have full control over your instructions and chatmodes with easy CLRUD (Create, List, Read, Update, Delete) commands\u2014so you can manage, organize, and evolve your prompts as your needs change. There\u2019s a curated library of high-quality chatmodes and instructions to get you started or inspire your own customizations.\n\nOne of the most powerful features is the ability to update your prompts and instructions directly from the online library. This keeps your setup in sync with the latest improvements, best practices, and new ideas\u2014without losing your own custom tweaks. Stay up to date, collaborate with others, and always have the best Copilot experience possible.\n\n\n## Contributing\n\nWant to help improve this tool? Check out [CONTRIBUTING.md](CONTRIBUTING.md) for development setup and guidelines.\n\n## License\n\nMIT License - see [LICENSE](LICENSE) for details.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Mode Manager MCP: Server for managing VS Code .chatmode.md and .instructions.md files (GitHub Copilot prompts)",
    "version": "0.1.19",
    "project_urls": {
        "Documentation": "https://github.com/NiclasOlofsson/mode-manager-mcp#readme",
        "Homepage": "https://github.com/NiclasOlofsson/mode-manager-mcp",
        "Issues": "https://github.com/NiclasOlofsson/mode-manager-mcp/issues",
        "Repository": "https://github.com/NiclasOlofsson/mode-manager-mcp"
    },
    "split_keywords": [
        "chatmode",
        " github-copilot",
        " instruction",
        " mcp",
        " mode-manager",
        " prompts",
        " vscode"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f7b1c8d89ff2f1b4ab13ec842f1e3632a385edd6010ae23039004a4bcaad028",
                "md5": "bf4868eb6125461589a27ced2bf2faa7",
                "sha256": "4bf249f7ab6d7f478dd6a714044b9d06248adfdff00f12e1067139656f9f2850"
            },
            "downloads": -1,
            "filename": "mode_manager_mcp-0.1.19-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "bf4868eb6125461589a27ced2bf2faa7",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 47417,
            "upload_time": "2025-08-10T14:20:40",
            "upload_time_iso_8601": "2025-08-10T14:20:40.534005Z",
            "url": "https://files.pythonhosted.org/packages/7f/7b/1c8d89ff2f1b4ab13ec842f1e3632a385edd6010ae23039004a4bcaad028/mode_manager_mcp-0.1.19-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f8a40ee26c31ee10ee11729ccc724884f13a5d73456b105fe807ea38cf1fb92",
                "md5": "4435825f1b981586dddfe2563b0fedde",
                "sha256": "2bfbcf449bccf099c6667ca4c5eee4fff5b294163e883fae3d1edf29ea9a6c98"
            },
            "downloads": -1,
            "filename": "mode_manager_mcp-0.1.19.tar.gz",
            "has_sig": false,
            "md5_digest": "4435825f1b981586dddfe2563b0fedde",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 39437,
            "upload_time": "2025-08-10T14:20:41",
            "upload_time_iso_8601": "2025-08-10T14:20:41.936768Z",
            "url": "https://files.pythonhosted.org/packages/7f/8a/40ee26c31ee10ee11729ccc724884f13a5d73456b105fe807ea38cf1fb92/mode_manager_mcp-0.1.19.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-10 14:20:41",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "NiclasOlofsson",
    "github_project": "mode-manager-mcp#readme",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "mode-manager-mcp"
}
        
Elapsed time: 0.42261s