Install
$ agentstack add skill-24601-surreal-skills-surrealmcp ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
SurrealDB MCP for AI Agents
Two MCP surfaces exist as of SurrealDB 3.1:
| Surface | When to use | |---|---| | Built-in (surreal mcp, HTTP /mcp) | Local IDE hosts; simplest setup with the main surreal binary | | Standalone (surrealmcp start) | Extended tool catalog, cloud helpers, multi-endpoint switching |
Built-in MCP (SurrealDB 3.1+)
# stdio — typical MCP host config
surreal mcp --endpoint ws://127.0.0.1:8000/rpc --ns test --db test \
--user root --pass root
Security: stdio MCP grants owner-level tool access with no login step. Do not expose to untrusted hosts. HTTP /mcp requires normal SurrealDB authentication.
See [rules/surrealmcp.md](../../rules/surrealmcp.md) for env vars and tool hints.
Standalone surrealmcp (v0.4.0)
Not published to crates.io or npm. Install from source or Docker:
git clone https://github.com/surrealdb/surrealmcp
cd surrealmcp && cargo install --path .
# Or Docker
docker run --rm -i --pull always surrealdb/surrealmcp:latest start \
--endpoint ws://localhost:8000/rpc --ns test --db test
The start subcommand is mandatory. Full tool catalog and host wiring: [rules/surrealmcp.md](../../rules/surrealmcp.md).
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: 24601
- Source: 24601/surreal-skills
- License: MIT
- Homepage: https://surrealdb.com
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.