Overview
MCP servers by JOS is a project that provides a framework for building Model Context Protocol (MCP) servers, starting from a predefined MCP template.
To use mcp-servers-jos, clone the repository from GitHub, and follow the instructions in the README to set up your MCP server using the provided template.
- Provides a starting template for MCP servers - Access to JUCE Framework C++ class documentation - Easy setup and customization for developers
- Building custom MCP servers for various applications
- Integrating JUCE Framework documentation into server setups
- Rapid prototyping of server functionalities using the MCP template
Add to your AI client
Use these steps to connect mcp-servers-jos in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-servers-jos-josmithiii": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-jos-josmithiii"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-servers-jos-josmithiii": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-jos-josmithiii"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-servers-jos-josmithiii": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-jos-josmithiii"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-servers-jos-josmithiii": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-jos-josmithiii"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-servers-jos-josmithiii": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-jos-josmithiii"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-servers-jos-josmithiii": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-jos-josmithiii"
]
}
}
}FAQ
What is the MCP?
The Model Context Protocol (MCP) is a protocol designed for building context-aware applications.
Is there a license for using mcp-servers-jos?
Yes, mcp-servers-jos is licensed under the MIT license, allowing for free use and modification.
Where can I find more information?
More information can be found in the project's GitHub repository and the linked tutorials.