Barnsworthburning MCP
A Model Context Protocol (MCP) server for searching barnsworthburning.net.
Overview
Barnsworthburning MCP is a Model Context Protocol (MCP) server designed for searching the website barnsworthburning.net through an API.
To use Barnsworthburning MCP, you can either install it via Smithery for compatible clients like Claude for Desktop or manually clone the repository and build the server.
- Provides an API endpoint for searching barnsworthburning.net - Compatible with MCP clients such as Claude for Desktop - Allows for flexible search queries through the API
- Searching for specific articles or content on barnsworthburning.net.
- Integrating with AI tools to enhance search capabilities.
- Developing custom applications that require access to barnsworthburning.net's content.
Add to your AI client
Use these steps to connect Barnsworthburning MCP in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"barnsworthburning-mcp-aias": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-barnsworthburning-mcp-aias"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"barnsworthburning-mcp-aias": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-barnsworthburning-mcp-aias"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"barnsworthburning-mcp-aias": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-barnsworthburning-mcp-aias"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"barnsworthburning-mcp-aias": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-barnsworthburning-mcp-aias"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"barnsworthburning-mcp-aias": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-barnsworthburning-mcp-aias"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"barnsworthburning-mcp-aias": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-barnsworthburning-mcp-aias"
]
}
}
}FAQ
How do I install Barnsworthburning MCP?
You can install it automatically via Smithery or manually by cloning the repository and running the build commands.
What clients are compatible with Barnsworthburning MCP?
It works with any MCP client, including Claude for Desktop and Cursor.
Is there documentation available for using the MCP?
Yes, you can refer to the Model Context Protocol documentation for detailed usage instructions.