Back to stacks

Security Researcher

by Jonathan S

Audit code, fetch CVEs, and reason through vulnerabilities step-by-step.

Servers in this stack

developer-tools
GitHub

Interact with GitHub repositories, issues, and pull requests.

@modelcontextprotocol/server-github
file-system
Filesystem

Read and write files on the local filesystem.

@modelcontextprotocol/server-filesystem
web
Fetch

HTTP fetch tool for reading web content and APIs.

@modelcontextprotocol/server-fetch
ai
Sequential Thinking

Dynamic and reflective problem-solving through sequential thought chains.

@modelcontextprotocol/server-sequential-thinking
search
Brave Search

Web and local search using the Brave Search API.

@modelcontextprotocol/server-brave-search

Copy config

// .vscode/mcp.json
{
"servers": {
"github": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-github"
],
"type": "stdio"
},
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem"
],
"type": "stdio"
},
"fetch": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fetch"
],
"type": "stdio"
},
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
],
"type": "stdio"
},
"brave-search": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-brave-search"
],
"type": "stdio"
}
}
}