1. Conduid
  2. AI
  3. Modelcontextprotocolserver
MCP server · AI

Modelcontextprotocolserver

MCP server: Modelcontextprotocolserver

Unclaimed last commit a year ago ai
37Low

Scored 4 months ago · breakdown

About Modelcontextprotocolserver

Modelcontextprotocolserver is an MCP server published by PranavJa1n in the AI category: mCP server: Modelcontextprotocolserver. It has been installed 0 times through Conduid.

Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx modelcontextprotocolserver

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Modelcontextprotocolserver

Powered by Claude · Grounded in docs

I know everything about Modelcontextprotocolserver. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

🚀 MCP Server – Overview

The Model Context Protocol (MCP) Server is a lightweight, flexible bridge between large language models (like Claude or ChatGPT) and real-world applications or system operations. It allows AI models to perform tasks such as running terminal commands, accessing camera devices, or retrieving weather data — all through structured tool-calling interfaces.

By separating logic and execution layers, the MCP server ensures a safe and controllable way for models to interact with your machine, providing modularity, transparency, and extensibility.


⚙️ Installation Guide

This project uses uv to manage the Python environment and dependencies.

1. Install uv

MacOS:

curl -LsSf https://astral.sh/uv/install.sh | sh

Windows (PowerShell):

powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

2. Navigate to Your Project Folder

cd Project_Folder

3. Initialize the Project with uv

uv init

4. Add MCP as a Dependency

uv add "mcp[cli]"

🚧 Running Any MCP Server

Before running any MCP server file, you must activate the virtual environment:

MacOS/Linux:

source venv/bin/activate

Windows:

venv\Scripts\activate

Then install and run the desired MCP module:

mcp install Python-Filename.py

Replace Python-Filename.py with the actual MCP file you want to run (e.g., terminal.py, camera.py, weather.py).


⚠️ Troubleshooting

If any MCP server does not work as expected, you may need to modify the config file used by the MCP server.

Open the claude_desktop_config.json (for claude) or the relevant configuration file and change

{
  "mcpServers": {
    "Name of the mcp server": {
      "command": "uv",
      "args": [
        "run",
        "--with",
        "mcp[cli]",
        "mcp",
        "run",
        "Path to the mcp file"
      ]
    }
  }
}

to:

{
  "mcpServers": {
    "Name of the mcp server": {
      "command": "mcp",
      "args": [
        "run",
        "Path to the mcp file"
      ]
    }
  }
}

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About Modelcontextprotocolserver

How do I install Modelcontextprotocolserver?

Run npx modelcontextprotocolserver, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Modelcontextprotocolserver safe to use with an AI agent?

Its trust score is 37 out of 100 (low). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Modelcontextprotocolserver still maintained?

The last commit was a year ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.