This guide shows how to connect the Yeltzland MCP server to popular AI clients.
If you can copy and paste, you can do this.
https://bravelocation.com/yeltzland-mcp
That is the only value most clients need.
yeltzland.https://bravelocation.com/yeltzland-mcpWhat tools do you have from yeltzland?If your client does not have a direct URL field, use the command-based setup shown below (npx mcp-remote ...).
Claude Desktop uses a config file called claude_desktop_config.json.
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\\Claude\\claude_desktop_config.jsonmcpServers{
"mcpServers": {
"yeltzland": {
"command": "npx",
"args": [
"mcp-remote",
"https://bravelocation.com/yeltzland-mcp"
]
}
}
}
If you already have other servers, keep them and add yeltzland as one more entry.
Use yeltzland to get the latest Halesowen Town score.
OpenAI supports remote MCP tools in the Responses API.
import OpenAI from "openai";
const client = new OpenAI({ apiKey: process.env.OPENAI_API_KEY });
const resp = await client.responses.create({
model: "gpt-5",
tools: [
{
type: "mcp",
server_label: "yeltzland",
server_description: "Halesowen Town fixtures and results",
server_url: "https://bravelocation.com/yeltzland-mcp",
require_approval: "never"
}
],
input: "What is the latest Halesowen Town score?"
});
console.log(resp.output_text);
from openai import OpenAI
client = OpenAI()
resp = client.responses.create(
model="gpt-5",
tools=[
{
"type": "mcp",
"server_label": "yeltzland",
"server_description": "Halesowen Town fixtures and results",
"server_url": "https://bravelocation.com/yeltzland-mcp",
"require_approval": "never",
}
],
input="Show me Halesowen Town's next fixture."
)
print(resp.output_text)
If your OpenAI client has a visual MCP/Tools screen, enter the same values there:
yeltzlandhttps://bravelocation.com/yeltzland-mcpEvery MCP client asks for the same idea:
Use whichever mode your client supports.
yeltzlandhttps://bravelocation.com/yeltzland-mcp{
"mcpServers": {
"yeltzland": {
"command": "npx",
"args": [
"mcp-remote",
"https://bravelocation.com/yeltzland-mcp"
]
}
}
}
If your client asks for a single command line, use:
npx mcp-remote https://bravelocation.com/yeltzland-mcp
After setup, try these:
What yeltzland tools are available?Get the latest Halesowen Town score.Show Halesowen Town's next fixture.Show recent results against Stourbridge.If it does not work first time, check these:
https://bravelocation.com/yeltzland-mcp
npx).List my MCP servers/tools to verify yeltzland appears.Yeltzland tools can help with:
If you can connect the server, you are done. The rest is just asking normal questions.