standard-horoscope-feature
The Standard Horoscope Feature MCP Server is a comprehensive solution for creating full-featured horoscope websites or mobile applications.
The Standard Horoscope Feature MCP Server offers a wide array of functionalities designed to enhance astrology-based projects. It covers a vast domain of Vedic Astrology, providing tools for both beginners and experienced astrologers. The server includes features such as detailed horoscope calculations, remedial measures, dosha analysis, predictions, and Vedic astrology charts. It also provides insights into planetary positions and their impacts according to Vedic/Indian Astrology. This server is ideal for those looking to build comprehensive astrology applications, offering a robust set of tools and resources to support various astrological needs.
Features
- Kundli & Horoscope Calculations: Generate detailed horoscope charts and analyze various astrological aspects.
- Remedial Measures: Receive suggestions for gemstones, mantras, and rudraksha to mitigate doshas and enhance well-being.
- Dosha Analysis: Get detailed reports on doshas including Manglik and Kal Sarpa, along with suggested remedies.
- Predictions & Reports: Access planet rashi, planet house reports, and much more to forecast astrological events.
- Vedic Astrology Charts: Includes all 16 divisional charts of Vedic Astrology to provide a comprehensive astrological outlook.
MCP Tools
- Numerology Basic Details: Provides a detailed numerology report.
- Panchang Details: Access data points for panchang elements along with sunrise and sunset timings.
- Planetary Panchang Details: Get planetary degrees and retrograde positions at sunrise.
- Vimshottari Dasha Details: Explore major and current vimshottari dasha for complete mahadasha details.
- Manglik & Kalsarpa Dosha Reports: Calculate and analyze these doshas thoroughly.
- Gemstone Suggestions: Receive personalized recommendations for life stones, lucky stones, and benefic stones.
- Horoscope Charts: Utilize various chart types to draw horoscope charts with detailed planetary positions.
- Astrological Details: Delve into avakahada details including nakshatra, charan, tithi, and more.
- Planetary Details: Retrieve detailed information about planets such as house, sign, degree, and nakshatra.
Usage with Different Platforms
python
python
import mcp
# Initialize the MCP server
server = mcp.Server('horoscope')
# Generate a horoscope chart
chart = server.generate_chart(date_of_birth='1990-01-01', time_of_birth='10:00', place_of_birth='New Delhi')
# Get dosha analysis
dosha_report = server.get_dosha_analysis(chart)
# Print the dosha report
print(dosha_report)
javascript
javascript
const mcp = require('mcp');
// Initialize the MCP server
const server = new mcp.Server('horoscope');
// Generate a horoscope chart
server.generateChart({
dateOfBirth: '1990-01-01',
timeOfBirth: '10:00',
placeOfBirth: 'New Delhi'
}).then(chart => {
// Get dosha analysis
return server.getDoshaAnalysis(chart);
}).then(doshaReport => {
// Print the dosha report
console.log(doshaReport);
});