Learn how to connect Oshaani MCP Server to your favorite AI agents
The Oshaani MCP (Model Context Protocol) Server provides powerful tools and capabilities that can be integrated into various AI agents. This server exposes agent management, conversation handling, and other features through a standardized MCP interface.
https://mcp.oshaani.com
/mcp/health
To use the MCP server, you need an API key for authentication. Follow these steps:
Visit https://oshaani.com and log in to your account.
Go to your profile page and find the API Key section.
If you don't have an API key yet, generate one. Copy it securely - you'll need it for configuration.
Cursor is a popular AI-powered code editor that supports MCP servers. Here's how to add the Oshaani MCP server:
Open Cursor and go to Settings → Features → MCP Servers or edit the MCP configuration file directly.
Open or create the MCP configuration file. The location depends on your OS:
~/Library/Application Support/Cursor/User/globalStorage/mcp.json%APPDATA%\Cursor\User\globalStorage\mcp.json~/.config/Cursor/User/globalStorage/mcp.jsonAdd the following configuration to your MCP servers:
{
"mcpServers": {
"oshaani-agent-api": {
"url": "https://mcp.oshaani.com/mcp",
"headers": {
"Authorization": "ApiKey YOUR_API_KEY_HERE"
}
}
}
}
Replace YOUR_API_KEY_HERE with your actual API key from step 2.
Restart Cursor to load the new MCP server configuration.
Claude Desktop (Anthropic's official app) supports MCP servers through configuration files.
Find your Claude Desktop configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json~/.config/Claude/claude_desktop_config.jsonOpen the config file and add the MCP server configuration:
{
"mcpServers": {
"oshaani-agent-api": {
"url": "https://mcp.oshaani.com/mcp",
"headers": {
"Authorization": "ApiKey YOUR_API_KEY_HERE"
}
}
}
}
Replace YOUR_API_KEY_HERE
Close and reopen Claude Desktop to load the new configuration.
The Oshaani MCP server follows the Model Context Protocol specification and should work with any MCP-compatible client. Here's a generic configuration:
{
"mcpServers": {
"oshaani-agent-api": {
"url": "https://mcp.oshaani.com/mcp",
"headers": {
"Authorization": "ApiKey YOUR_API_KEY_HERE"
}
}
}
}
https://mcp.oshaani.com/mcpThe Oshaani MCP server supports multiple authentication methods. You can use any of the following:
Authorization: ApiKey YOUR_API_KEY_HERE
Authorization: Bearer YOUR_API_KEY_HERE
X-API-Key: YOUR_API_KEY_HERE
headers object to include authentication.
The ApiKey format is recommended for consistency.
After configuring your MCP client, you can test the connection using these methods:
Test if the server is accessible:
curl https://mcp.oshaani.com/health
curl -H "Authorization: ApiKey YOUR_API_KEY_HERE" \
https://mcp.oshaani.com/mcp
Most MCP clients will show:
https://mcp.oshaani.com/mcpIf you continue to experience issues:
/var/log/mcp-server//var/log/nginx/mcp_oshaani_com_error.logOshaani MCP Server Guide
Server URL: https://mcp.oshaani.com |
Platform: oshaani.com