# MCP Skill

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

- Skill: `aws-samples/mcp-skill` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add aws-samples/mcp-skill`
- Raw SKILL.md: https://api.skillmd.com/api/skills/aws-samples/mcp-skill/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: aws-samples (https://skillmd.com/u/aws-samples)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/aws-samples/mcp-skill

---


# MCP Skill

This skill connects to external MCP servers for data processing.

## Setup

Configure MCP servers in your settings:

```json
{
  "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:

```python
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

