Tools for Otherside development.
Open MCP Settings
Settings → MCP → Add new global MCP server
Add Configuration
{
"mcpServers": {
"oswiki": {
"url": ""
}
}
}
Restart Cursor
You'll see "oswiki" in your tool list.
.cursor/mcp.json in your project root for per-project configuration instead of global.
Install Copilot Extension
Install GitHub Copilot Chat extension with MCP support
Create MCP Config
Create .vscode/mcp.json in your project:
{
"servers": {
"oswiki": {
"type": "http",
"url": ""
}
}
}
Reload VS Code
Press Ctrl+Shift+P → "Reload Window"
"servers" with "type": "http" (not Cursor's "mcpServers"). You can also add it globally via MCP: Add Server in the command palette.
Add as a Connector (recommended)
Claude Desktop connects to remote MCP servers through Connectors - no config file needed.
Settings → Connectors → Add custom connector → paste the URL:
Alternative: config file via mcp-remote
The config file only accepts stdio servers (a "url" entry is rejected), so bridge it with mcp-remote. Requires Node.js.
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"oswiki": {
"command": "npx",
"args": ["mcp-remote", ""]
}
}
}
Restart Claude Desktop
Close and reopen Claude Desktop; the OSWiki tools appear in the tools menu.
Add the server
One command, from any terminal:
claude mcp add --transport http oswiki
Or per project
Commit a .mcp.json in the project root so the whole team gets it:
{
"mcpServers": {
"oswiki": {
"type": "http",
"url": ""
}
}
}
Verify
Run /mcp inside Claude Code - oswiki should show as connected with 12 tools.
Recommended: Unreal MCP
For Unreal Engine development, we recommend Unreal MCP for direct editor integration - asset management, blueprint creation, and live editing.
OSWiki MCP provides ODK documentation, class references, and code examples. Use both together via Claude Desktop for full Otherside development support.
Endpoints
# Health
GET
# Tools
GET
# Call
POST
{
"tool": "search_docs",
"arguments": { "query": "m-cube" }
}
cURL
curl -X POST \
-H "Content-Type: application/json" \
-d '{"tool":"search_docs","arguments":{"query":"animation"}}'
Changelog
-
+
New tool:
get_oswiki_collections— discover and rank collections on ApeChain (1000+) and Ethereum by volume / floor / sales / holders, search by name or address, verified-only, or get one collection's full profile (links, verification, royalty, floor, volume and sales across 24h / 7d / 30d / all) -
+
ApeChain everywhere:
get_oswiki_market(query=collection),get_oswiki_assetandget_oswiki_activitygained achainparameter and now work for any indexed collection (slug or 0x address) — token traits, rarity, owner, current listing with buyable askId, last sale, chain-wide sales feed and recently-listed OSWiki items - + Public API v1: live-data tools now read the documented api.oswiki.xyz/v1 surface (collections, tokens, sales, listings) instead of internal routes — stable shapes, oswiki.xyz back-links in every payload
-
•
Rate limits: optional
OSWIKI_API_KEYgives the server its own API quota instead of the shared anonymous limit
- + Docs Scraping: Pages now ingested as GitBook Markdown via the sitemap index — recovered the ODK v10 / v9.4 release notes, upgrade guides, and platform docs
- + Cleanup: Removed empty/unused collections and ~120 lines of dead code; dropped the cheerio dependency
-
•
Blueprints: Scrape gated off until a v10 source URL exists;
get_odk_blueprintkeeps serving the last good data - • Fix: Deploy pipeline no longer reports false failures after a successful deploy
-
+
Tool Merge: 15 → 11 tools. MML docs consolidated into
get_mml_docs, Otherside docs intoget_otherside_docs - + Performance: Shared MongoDB connections, optimized cache TTLs, shared response helpers
- • Monitoring: Slow tool and error logging in registry
- + Performance: Parallel searches, API timeouts, deterministic caching
- + Reliability: Retry with backoff, rate limiting, IPFS fallbacks
- + Filters: Resource/artifact categories, obelisk pieces, rarity rank
- • Fixes: Activity types, price history params, GLB size limit
- + Wallet: Otherside rank/progression view
- + VS Code: Installation guide for Copilot
- ★ Initial Release: MML, ODK, market data, wallet, avatar validation tools