How to Use the Clash of Clans Strategy & War Analytics MCP in Vercel AI SDK
Build live-streaming Clash of Clans dashboards using Vercel AI SDK to display war logs and player stats without loading spinners.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Clash of Clans Strategy & War Analytics MCP to Vercel AI SDK
Create your Vinkius account to connect Clash of Clans Strategy & War Analytics to Vercel AI SDK and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.
Track live clan wars in your Vercel AI SDK UI
Stop making users wait for heavy Clash of Clans data payloads to load. This MCP integration lets you query `get_current_war` and stream the live battle status straight into your Next.js or React components. Your users watch war stars and destruction percentages tick up in real time as the raw JSON transforms into clean UI elements. You can also pull historical performance using `get_clan_war_log` to run quick win-loss ratio calculations on the fly. The streaming client handles the data transfer in the background, meaning your interface stays responsive even during massive 50v50 war events.
Scout rival player profiles instantly
Build a scouting tool that lets clan leaders inspect incoming opponents without leaving the chat interface. By passing player tags directly to `get_player_profile`, your AI client fetches troop levels, hero progress, and war stars instantly. Combine this with `get_clan_members` to parse an entire clan's roster at once. Your Vercel AI SDK application maps these stats directly to your frontend, highlighting rushed bases or high-level threats before the war prep day ends.
Stream global rankings to your custom app
Pull global standings directly into your client's viewport using `get_location_rankings`. Your interface displays the top clans or players in real-time, filtered by specific regions using `list_locations` to locate international trends. This setup lets you build custom leaderboards that update as your agent processes the API responses. It bypasses the need for complex state management on your backend by letting the streaming client handle the heavy lifting.
Set up Clash of Clans Strategy & War Analytics MCP in Vercel AI SDK
Prerequisites
- Node.js 18+ and a TypeScript project
-
ai+@modelcontextprotocol/sdkpackages - Active Vinkius subscription with a valid endpoint token
- 1
Install dependencies
Run
npm install ai @modelcontextprotocol/sdkplus your preferred model provider (e.g.@ai-sdk/openai). - 2
Create the Streamable HTTP transport
Use
StreamableHTTPClientTransportwith your Vinkius endpoint URL. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. - 3
Discover and use tools
Call
mcpClient.tools()to auto-discover all Clash of Clans Strategy & War Analytics tools. Pass them directly togenerateText()orstreamText()— no manual schema definitions needed. - 4
Works with any model provider
Swap
openai("gpt-4o")for any AI SDK provider — Anthropic, Google, Mistral. The MCP tools work identically across all supported models.
import { experimental_createMCPClient as createMCPClient } from "ai";
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp";
import { generateText } from "ai";
import { openai } from "@ai-sdk/openai";
const transport = new StreamableHTTPClientTransport(
new URL("https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp")
);
const mcpClient = await createMCPClient({ transport });
const tools = await mcpClient.tools();
const { text } = await generateText({
model: openai("gpt-4o"),
tools,
prompt: "List recent Clash of Clans Strategy & War Analytics transactions",
});
console.log(text);
await mcpClient.close(); Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by Clash of Clans. All third-party trademarks, logos, and brand names are the property of their respective owners. Their use on this website is strictly for informational purposes to identify service compatibility and interoperability.
Why Choose Vinkius
Vinkius connects your tools to AI with real-time monitoring and automatic cost savings — all from one dashboard.
Real-time monitoring
Live
visibility into every interaction
Connect your favorite tools to your AI and see exactly what's happening — every request, every response, in real time.
Built-in savings
60%
lower AI costs
Vinkius compresses data between your apps and your AI automatically. Lower bills every month — no configuration required.
Single dashboard
One
place for every integration
Every tool your AI connects to, managed from a single screen. One account, complete control.
Common questions about Clash of Clans Strategy & War Analytics MCP in Vercel AI SDK
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Clash of Clans Strategy & War Analytics MCP today
We host it, we monitor it, we maintain it. You just paste one token.