edge-case-server
MCP STDIO server optimized for testing edge cases and unusual scenarios
pinned to #65f33dfupdated 2 weeks ago
Ask your AI client: “install mcps/edge-case-server”.
Requires the metahub MCP server installed in your client. Set up MCP.
mh install mcps/edge-case-servermetahub onboarded this repo on the author's behalf.
If you own github.com/maximhq/bifrost on GitHub, claim the listing to take over publishing. Your claim preserves the existing eval history and badges; only the curator label is replaced with verified-publisher on your next publish.
Stars
6,426
Last commit
2 weeks ago
Latest release
published
- #ai-gateway
- #gateway
- #gateway-services
- #generative-ai
- #guardrails
- #llm
- #llm-cost
- #llm-gateway
- #llm-observability
- #llmops
- #load-balancing
- #mcp-client
- #mcp-gateway
- #mcp-server
- #model-router
- #token-management
What this server exposes
Surfaces parsed from this server's source at publish time.
Launches: edge-case-server
Evaluation report
WarningsAutomated checks the publisher passed at publish time — structure, docs, safety, and whether the artifact behaves as claimed.65f33df· 2 weeks ago
Safety
21Dependencies: known vulnerabilitieswarn
2 high/critical advisories — @modelcontextprotocol/[email protected] (HIGH: GHSA-8r9q-7v3j-jr4g) · @modelcontextprotocol/[email protected] (HIGH: GHSA-w48q-cv73-mx4w)
Update the affected packages, then re-publish. (`npm audit` shows the same data locally.)
LICENSE file at repo root
LICENSE
No sensitive files in the repo
scanned for .env, credentials.json, *.pem, .ssh/, AWS / GCP configs — none found
Release history
1- releasecurrent65f33dfwarn2 weeks ago
Contents
Edge Case MCP Server
MCP STDIO server optimized for testing edge cases and unusual scenarios.
Tools
- unicode_tool - Returns Unicode text including emojis and right-to-left characters
- binary_data - Returns binary-like data in various encodings (base64, hex, raw)
- empty_response - Returns various types of empty responses (empty string, object, array, null)
- null_fields - Returns responses with configurable null fields
- deeply_nested - Returns deeply nested data structures up to specified depth
- special_chars - Returns text with special characters (quotes, backslashes, newlines, control chars)
- zero_length - Returns zero-length content
- extreme_sizes - Returns data of various extreme sizes (tiny, normal, huge)
Usage
# Install dependencies
npm install
# Build
npm run build
# Run
node dist/index.js
Integration Testing
This server is designed to test edge case handling in Bifrost's MCP integration via STDIO transport.
Example Tool Calls
// Test Unicode handling
{
"name": "unicode_tool",
"arguments": {
"id": "test-1",
"include_emojis": true,
"include_rtl": true
}
}
// Test binary data
{
"name": "binary_data",
"arguments": {
"id": "test-2",
"encoding": "base64"
}
}
// Test deeply nested structures
{
"name": "deeply_nested",
"arguments": {
"id": "test-3",
"depth": 20
}
}
// Test special characters
{
"name": "special_chars",
"arguments": {
"id": "test-4",
"char_type": "all"
}
}
Reviews
No reviews yet. Be the first.
Related
@remote-mcp/example
@remote-mcp/example MCP server
excel-mcp-server
Excel MCP Server for manipulating Excel files
vulnerable-mcp-server-malicious-code-exec
A simple MCP server with a get_qotd tool that fetches quotes from a free API
mh install mcps/edge-case-server