How to Use the Fortnite Cosmetics & Item Shop MCP in OpenAI Agents SDK
Build production agents with the OpenAI Agents SDK to track Fortnite shop rotations and cosmetic rarities with built-in safety guardrails.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Fortnite Cosmetics & Item Shop MCP to OpenAI Agents SDK
Create your Vinkius account to connect Fortnite Cosmetics & Item Shop to OpenAI Agents 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 the Daily Shop with Guardrails
Your agent can automatically check the Fortnite shop the second it resets. Use `get_item_shop` to pull the daily and featured sections. The OpenAI SDK lets you define guardrails, so your agent won't accidentally spam the endpoint if it gets stuck in a loop. For a complete snapshot, call `get_combined_shop`. This gives your agent the full context of what's available in one go. The SDK's built-in tracing shows you every tool call, so you have a full audit log of how your agent decided to query the shop.
Find Any Cosmetic, Instantly
Stop manually searching for skins. Your agent can do it for you. Give it a name, and it will use `search_cosmetics` to pull up images, rarity, and release info. It's fast and direct. You can also get more specific. Let your agent filter by rarity with `search_cosmetics_by_rarity` to find all 'legendary' items, or by type with `search_cosmetics_by_type` to list every 'emote'. It's a simple way to build a powerful cosmetic database search.
Auto-Discover Tools on this MCP Server
Getting started is simple. You point the OpenAI Agents SDK at this MCP server's endpoint, and it automatically discovers all available tools. There's no manual tool definition or boilerplate code to write. This means your agent can immediately use tools like `get_new_cosmetics` to spot leaked items the moment they're added to the game files. With `cacheToolsList=True`, subsequent agent runs are even faster, as the tool list is already known.
Set up Fortnite Cosmetics & Item Shop MCP in OpenAI Agents SDK
Prerequisites
- Python 3.10+ installed
-
openai-agentspackage (pip install openai-agents) - Active Vinkius subscription with a valid endpoint token
- 1
Install the SDK
Run
pip install openai-agentsto install the OpenAI Agents SDK. The MCP integration is built-in — no extra dependencies needed. - 2
Connect via SSE transport
Use
MCPServerSsewith your Vinkius endpoint URL. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. The SDK auto-discovers all Fortnite Cosmetics & Item Shop tools at runtime. - 3
Create your Agent
Pass the MCP to
Agent(mcp_servers=[server]). The agent receives Fortnite Cosmetics & Item Shop tools as native definitions — JSON schemas resolve automatically. - 4
Run the agent
Call
Runner.run(agent, prompt)to execute. The agent invokes the appropriate Fortnite Cosmetics & Item Shop tools and returns structured results. Copy the full example on the right to get started.
import asyncio
from agents import Agent, Runner
from agents.mcp import MCPServerSse
async def main():
async with MCPServerSse(
url="https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
) as server:
agent = Agent(
name="Fortnite Cosmetics & Item Shop Agent",
instructions="You have access to Fortnite Cosmetics & Item Shop tools.",
mcp_servers=[server],
)
result = await Runner.run(agent, "List recent transactions")
print(result.final_output)
asyncio.run(main()) Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by Fortnite-API. 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 Fortnite Cosmetics & Item Shop MCP in OpenAI Agents SDK
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Fortnite Cosmetics & Item Shop MCP today
We host it, we monitor it, we maintain it. You just paste one token.