DOCUMENTATION_SUMMARY.md•1.57 kB
# Documentation Summary
This project now has comprehensive documentation for operating the RuneScape Wiki MCP Server.
## Created Documentation
### 1. **AGENTS.MD** (13,849 bytes)
The main knowledge base containing:
- Complete architecture overview
- All available tools with examples
- API endpoint reference
- Common item IDs
- Debugging procedures
- Usage in Claude with @RuneScape Wiki
- API categories reference
- Error handling patterns
- Performance tips
- Security considerations
### 2. **DEBUGGING.MD** (3,795 bytes)
Step-by-step debugging guide:
- How to enable debug logging
- Using MCP Inspector
- Common issues and solutions
- Testing procedures
- Troubleshooting tips
### 3. **debug-server.sh** (345 bytes)
Quick startup script for debug mode
### 4. **TEST_FROST_DRAGON.md** (701 bytes)
Testing notes and findings about Frost Dragon Bones
## Key Knowledge for Future Agents
### Quick Start
```bash
# Build and start server
npm run build
npm start
# Debug mode
npm run debug
```
### Essential Item IDs
- Frost Dragon Bones: 18832
- Abyssal whip: 4151
- Dragon bones: 536
### Tool Usage in Claude
```
@RuneScape Wiki get the price of Frost Dragon Bones
@RuneScape Wiki check stats for player Zezima
@RuneScape Wiki search for items starting with "Dragon"
```
### API Base URLs
- GE API: `https://secure.runescape.com/m=itemdb_rs/api`
- Hiscores: `https://secure.runescape.com/m=hiscore`
### Remember
- This is RS3 only (not OSRS)
- Always include User-Agent header
- Enable debug mode for troubleshooting
- Check AGENTS.MD for complete reference