Remote MCP server (SEE + Streamable HTTP) implementing the MCP spec's authorization extension. Use directly from your agents, or from Cursor / Claude with mcp-remote
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"http-oauth-mcp-serve": {
"command": "npx",
"args": [
"-y",
"NapthaAI/http-oauth-mcp-server"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add http-oauth-mcp-serve npx -y NapthaAI/http-oauth-mcp-server
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"http-oauth-mcp-serve": {
"command": "npx",
"args": [
"-y",
"NapthaAI/http-oauth-mcp-server"
]
}
}
}
📋 Copy