VedaApex
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@VedaApexsearch for latest advancements in quantum computing"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
title: VedaApex emoji: 🚀 colorFrom: blue colorTo: indigo sdk: docker app_port: 7860 pinned: false
VedaApex MCP Server
This backend now runs as a FastAPI application with an MCP layer added on top. Your original REST routes continue to work, and Claude can call the same backend through MCP tools.
Related MCP server: Metaso Search MCP Server
What changed
Existing FastAPI routes remain available at the original REST endpoints.
MCP endpoints are exposed at
/mcpfor HTTP transport and/ssefor SSE transport.Search, health, and chat endpoints are exposed as MCP tools.
Installation
cd c:/Users/heyhi/Downloads/backend
.\.venv\Scripts\python.exe -m pip install -r requirements.txtConfiguration
Copy the sample environment file and adjust the values:
copy .env.example .envImportant variables:
APP_NAME=VedaApex Search Aggregation
APP_VERSION=1.0.0
APP_ENV=development
PORT=7860
HOST=0.0.0.0
PEXELS_API_KEY=your_pexels_key_here
NASA_API_KEY=DEMO_KEY
WIKIMEDIA_API_KEY=
MCP_HTTP_PATH=/mcp
MCP_SSE_PATH=/sseRun the server
.\.venv\Scripts\python.exe main.pyThe API will be available at:
REST docs: http://localhost:7860/api/v1/docs
MCP HTTP: http://localhost:7860/mcp
MCP SSE: http://localhost:7860/sse
Test MCP locally
curl http://localhost:7860/api/v1/health
curl http://localhost:7860/mcpYou can also run the test suite:
.\.venv\Scripts\python.exe -m pytest -q test_mcp.pyMCP tools available
health_check— returns service health and enabled providersunified_search— runs the main intelligent search workflowbrowser_search— runs the browser-style search helperchat— sends a chat request to the configured LLM provider
Claude Desktop configuration
Use this configuration in your Claude Desktop config file:
{
"mcpServers": {
"vedaapex": {
"type": "streamable-http",
"url": "http://localhost:7860/mcp"
}
}
}If you prefer SSE instead of HTTP transport, use:
{
"mcpServers": {
"vedaapex": {
"type": "sse",
"url": "http://localhost:7860/sse"
}
}
}Notes
Your existing REST API behavior is preserved.
Authentication headers are forwarded for tool calls when present.
If an endpoint needs an API key, pass it through the request headers or environment variables used by the app.
Docker
docker build -t vedaapex-search . && docker run -p 7860:7860 vedaapex-searchRender
See DEPLOYMENT.md for cloud deployment guides.
❓ FAQ
Q: Can I add my own provider?
A: Yes! Create a provider class and add to providers/. The router will automatically include it.
Q: How are conflicts handled (space + scientific)?
A: Primary provider is chosen based on which category matches first.
Q: What if all providers fail?
A: Returns empty results with error details in logs.
Q: Can I disable a provider?
A: Yes, set ENABLE_PEXELS=false in .env
Built for intelligent search! 🧠✨
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceAn MCP server that aggregates web search results from multiple engines and optionally renders pages to Markdown, providing a unified search interface.103ISC
- AlicenseAqualityDmaintenanceMCP server for Metaso Search API, providing multi-scope search and webpage reading tools.2562Apache 2.0
- Alicense-qualityDmaintenanceMCP server for documentation search that automatically indexes web documentation sites and provides semantic, full-text, or hybrid search capabilities.8MIT
- FlicenseAqualityCmaintenanceMCP server for Bocha Search API, enabling web search and AI-powered search with customizable parameters like result count, freshness, and summaries.21
Related MCP Connectors
MCP server for Google search results via SERP API
MCP server for Appcircle mobile CI/CD platform.
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/heyabinav/VedaAPEX-SaaS-Ai'
If you have feedback or need assistance with the MCP directory API, please join our Discord server