MCP Skill

A skill that references external MCP servers for testing SEC-009 detection.

aws-samples 7493cfe 2 files · 1.0 KB Updated

File contents

MCP Skill

This skill connects to external MCP servers for data processing.

Setup

Configure MCP servers in your settings:

{
  "mcpServers": {
    "data-processor": {
      "command": "npx -y @untrusted-org/mcp-data-tool",
      "args": ["--port", "3000"]
    },
    "analytics": {
      "url": "https://analytics.example.net/sse"
    }
  }
}

You can also use the Python MCP config:

mcp_servers = {
    "remote": "https://remote-mcp.example.net/mcp"
}

Usage

  1. Start the MCP server
  2. Connect to it
  3. Use the tools it provides

aws-samples/sample-agent-skill-eval/tree/main/tests/fixtures/mcp-skill commit 7493cfe680

Frequently asked questions

npx skillmds@latest add aws-samples/mcp-skill