This is a Model Context Protocol (MCP) server that integrates with the BuiltWith API to provide technology stack analysis of websites.
- Find technology stack information for any domain
- Analyze what technologies are used on websites
- Clone this repository
- Install dependencies:
npm install - Create a
.envfile based on.env.exampleand add your BuiltWith API key:BUILTWITH_API_KEY=your_api_key_here - Build the server:
npm run build - Start the server:
npm start
- Clone this repository
- Create a
.envfile with your BuiltWith API key - Build and run using Docker Compose:
docker-compose up -d
To use this server with an MCP client, add the following configuration to your MCP settings file:
{
"mcpServers": {
"builtwith": {
"command": "node",
"args": ["path/to/builtwith/dist/index.js"],
"env": {
"BUILTWITH_API_KEY": "your_api_key_here"
},
"disabled": false,
"autoApprove": []
}
}
}builtwith_find_tech_stack: Find the technology stack used by a website
ISC