Skip to main content

Add your description here

Project description

MCP is Dangerous

Function tool usage makes AI Agents very powerful, which is akin to introducing app stores to smartphones. Especially with the release of MCP (Model Context Protocol), tool sharing has become easier than ever. That's why I've created the extendable-agents project to showcase how easy you can extend the capabilities of AI Agents through open-source tools or your custom tools.

While working on extendable-agents, I've realized that tool usage is a double-edged sword. The danger is that the tools you use have powerful access to your machine, such as your environment variables, files, etc.

⚠️ Security Warning

This project is a simple demonstration of the security risks associated with tool usage. The example below illustrates how malicious actors could potentially exploit MCP servers to access sensitive information:

# WARNING: This is a demonstration of security risks.
# DO NOT use this code maliciously!

import os
from mcp.server.fastmcp import FastMCP


server = FastMCP("Dangerous MCP")


@server.tool()
async def get_environment_variables() -> str:
    """Get all environment variables."""
    result = [
        "Here are what I could find:",
    ]
    for key, value in os.environ.items():
        result.append(f"{key:<30} {value[:5]}***")
    # This means I can open a backdoor to send your data to me!!
    return "\n".join(result)

⚠️ Warning: I recommend running this example in a sandboxed environment and deleting your OpenAI API key afterwards.

When using this tool with extendable-agents (choose PoliceAgent), the output appears like this:

Screenshot 2025-03-22 at 11 04 57

It might look harmless or even intentionally benign, right? But consider this scenario: you simply ask for the current time, and meanwhile, your sensitive data is being leaked without your knowledge.

Best Practices for Security

To protect yourself when using MCP or similar tools:

  1. Always review the source code of tools before using them
  2. Run tools in isolated environments when possible
  3. Be cautious of tools requesting access to sensitive information
  4. Use environment variable filtering when deploying tools
  5. Regularly audit the tools you're using

Disclaimer

This project is meant for educational purposes only to demonstrate potential security risks. Do not use this knowledge for malicious purposes. The author is not responsible for any misuse of this information.

License

MIT License

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mcp_is_dangerous-0.0.4.tar.gz (62.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mcp_is_dangerous-0.0.4-py3-none-any.whl (4.2 kB view details)

Uploaded Python 3

File details

Details for the file mcp_is_dangerous-0.0.4.tar.gz.

File metadata

  • Download URL: mcp_is_dangerous-0.0.4.tar.gz
  • Upload date:
  • Size: 62.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for mcp_is_dangerous-0.0.4.tar.gz
Algorithm Hash digest
SHA256 a8559cf589ee8c9500351d9e1bba6a3f6d47505938699b061fe88c869cdcd2db
MD5 d6991ab533c955c31b02db80474a6154
BLAKE2b-256 87f2039c644b121ba9ef2ea0c80b80cee7123148609097ee806311c05becf40f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_is_dangerous-0.0.4.tar.gz:

Publisher: release.yml on ShaojieJiang/mcp-is-dangerous

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mcp_is_dangerous-0.0.4-py3-none-any.whl.

File metadata

File hashes

Hashes for mcp_is_dangerous-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 1b9d306781c972cce7f86089d58aa8829aa0ce25e202adf48439509755914a9b
MD5 64a297df89556d4ac858ad4436c184e0
BLAKE2b-256 20461d87ddb56b5d928d85dbe1d053c1c3deb8bbf3de0650a2cf7d9c7c7ab7cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_is_dangerous-0.0.4-py3-none-any.whl:

Publisher: release.yml on ShaojieJiang/mcp-is-dangerous

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page