- BluestoneApps MCP Remote Server
created by
lallen3014 hours ago
Information
BluestoneApps MCP Remote Server
This server implements the Model Context Protocol (MCP) over HTTP, allowing remote access to BluestoneApps coding standards and code examples.
Features
- Implements MCP protocol over HTTP with JSON-RPC 2.0
- Supports Server-Sent Events (SSE) for streaming responses
- Provides access to coding standards and code examples
- Supports authentication
- Docker deployment ready
- HTTPS support via domain: https://mcp.betaplanets.com
Setup
- Install dependencies:
pip install -r requirements.txt
- Configure the server by editing the
.env
file:
MCP_TRANSPORT=http
MCP_HOST=0.0.0.0
MCP_PORT=8000
MCP_AUTH_ENABLED=true
MCP_AUTH_USERNAME=mcp-server
MCP_AUTH_PASSWORD=n2hXUijptRwpe9v6wZ37yOgEx4P8w3ofDRO0ko4A
- Copy the resources directory from the local MCP server:
cp -r ../mcp-server/resources ./
Running Locally
python simple_mcp_server.py
Testing
Local Testing
# Start the server
python simple_mcp_server.py
# In another terminal, run the test script
./test_mcp_server.sh
Remote Testing
# Test the remote server (IP address)
./test_remote_server.sh
# Test the domain
./test_domain.sh
Docker Deployment
# Build and push Docker image
./build_and_push.sh
# Deploy to remote server
./deploy.sh
Connecting with Windsurf/Cascade
Add the following to your MCP configuration file (~/.codeium/windsurf/mcp_config.json
):
{
"mcpServers": {
"bluestoneapps-remote": {
"transport": "http",
"url": "http://your-server-ip:5051",
"headers": {
"Authorization": "Basic YWRtaW46Y2hhbmdlbWU="
},
"description": "BluestoneApps Coding Standards and Examples (Remote)",
"displayName": "BluestoneApps Development Standards (Remote)"
}
}
}
Note: The Authorization header is base64(username:password)
. For the default credentials (admin:changeme), this is YWRtaW46Y2hhbmdlbWU=
.
Available Tools
get_project_structure
: Get project structure standards for React Native developmentget_api_communication
: Get API communication standards for React Native developmentget_component_design
: Get component design standards for React Native developmentget_state_management
: Get state management standards for React Native developmentget_component_example
: Get a React Native component exampleget_hook_example
: Get a React Native hook exampleget_service_example
: Get a React Native service exampleget_screen_example
: Get a React Native screen exampleget_theme_example
: Get a React Native theme examplelist_available_examples
: List all available code examples by category
Recommended Servers
mcp-deepresearchlocal mcp server perplexity

GithubMCP Server for the GitHub API, enabling file operations, repository management, search functionality, and more.

MongoDB LensFull featured MCP Server for MongoDB database analysis.

Mcp Server RagdocsAn MCP server that provides tools for retrieving and processing documentation through vector search, both locally or hosted. Enabling AI assistants to augment their responses with relevant documentation context.

ChatSumQuery and Summarize your chat messages.
Most Popular Model Context Protocol (MCP) ServersA curated list of the most popular Model Context Protocol (MCP) servers based on usage data from Smithery.ai
Perplexity Web Search MCP ServerA perplexity MCP server
Nuanced MCP ServerA Model Context Protocol (MCP) server that provides call graph analysis capabilities to LLMs through the nuanced library

Microsoft SQL Server MCP Server (MSSQL)MS SQL MCP Server
An easy-to-use bridge that lets AI assistants like Claude directly query and explore Microsoft SQL Server databases. No coding experience required!
What Does This Tool Do?
This tool allows AI assistants to:
Discover tables in your SQL Server database
View table structures (columns, data types, etc.)
Execute read-only SQL queries safely
Generate SQL queries from natural language requests
Template for MCP Server