TC's Personal MCP Server Setup Guide

This MCP server provides AI assistants with detailed access to my background, CV, and project portfolio. Primarily designed for personal use, it allows me to easily share my work experience and skills with AI tools in VS Code, Claude Desktop, and other MCP-compatible clients.

The "server" is served from a Macbook Air via a Cloudflared tunnel. If you experience any issues it's probably because my kids are playing Minecraft - there is no hope of remediation.

Connection Params:

Available Tools

Note: This server is publicly accessible but provides read-only access to professional information. A public API key is provided to prevent automated abuse.

Always be cautious when connecting to public servers and never share sensitive information through unknown MCP tools.

Configuration Instructions

VS Code Chat MCP:

Step 1: Open Command Palette (Ctrl+Shift+P or Cmd+Shift+P) in VS Code.
Step 2: Search for "MCP" and select "MCP: Open User Configuration".
Step 3: Enter the following configuration to add the server:.
{
	"servers": {
		"tim_mcp": {
			"url": "https://hjhero.com/mcp",
			"type": "https",
			"headers": {
				"Authorization": "Bearer "
			}
		}
	},
	"inputs": []
}
You can now talk to VS Code chat about my professional background, projects, and experience!

Claude Desktop MCP:

Step 1: Locate your Claude Desktop configuration file:
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
Step 2: Open the file in a text editor and add the server configuration:
{
  "mcpServers": {
    "tim_mcp": {
      "url": "https://hjhero.com/mcp",
      "transport": "streamable-http",
      "headers": {
        "Authorization": "Bearer "
    }
  }
}
Step 3: Save the file and restart Claude Desktop
The server tools will now appear in Claude Desktop's MCP tools panel!

Example Usage

Once configured, you can ask your AI assistant questions like:

Troubleshooting

Server not connecting?

Tools not appearing?