Help
RSS
API
Feed
Maltego
Contact
Domain > vishalmysore-a2amcpdemo.hf.space
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2025-05-28
3.219.73.27
(
ClassC
)
2025-09-30
54.145.224.52
(
ClassC
)
Port 80
HTTP/1.1 301 Moved PermanentlyServer: awselb/2.0Date: Tue, 30 Sep 2025 14:45:41 GMTContent-Type: text/htmlContent-Length: 134Connection: keep-aliveLocation: https://vishalmysore-a2amcpdemo.hf.space:443/ html>head>title>301 Moved Permanently/title>/head>body>center>h1>301 Moved Permanently/h1>/center>/body>/html>
Port 443
HTTP/1.1 200 Date: Tue, 30 Sep 2025 14:45:42 GMTContent-Type: text/html;charsetUTF-8Content-Length: 5969Connection: keep-alivevary: Originvary: Access-Control-Request-Methodvary: Access-Control-Request-Headersvary: origin, access-control-request-method, access-control-request-headerslast-modified: Wed, 18 Jun 2025 21:29:34 GMTaccept-ranges: bytesx-content-type-options: nosniffx-xss-protection: 0cache-control: no-cache, no-store, max-age0, must-revalidatepragma: no-cacheexpires: 0strict-transport-security: max-age31536000 ; includeSubDomainscontent-language: enx-proxied-host: http://10.108.56.152x-proxied-replica: gqpmh0t0-7crgyx-proxied-path: /link: https://huggingface.co/spaces/VishalMysore/a2amcpdemo>;relcanonicalx-request-id: 0YezpTaccess-control-allow-credentials: true !DOCTYPE html>html langen>head> meta charsetUTF-8 /> meta nameviewport contentwidthdevice-width, initial-scale1.0/> title>A2A MCP Security Demo/title> style> body { font-family: Segoe UI, Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; margin: 0; padding: 20px; max-width: 1000px; margin: 0 auto; background-color: #f9fbfc; } h1, h2, h3, h4 { color: #2c3e50; } h1 { margin-top: 0; } pre { background-color: #f8f9fa; padding: 15px; border-radius: 5px; overflow-x: auto; font-size: 14px; } code { color: #e83e8c; } .container { margin-bottom: 40px; } .note { background-color: #e3f2fd; padding: 20px; border-left: 5px solid #42a5f5; border-radius: 5px; margin: 30px 0; } ul { padding-left: 20px; } a { color: #007bff; text-decoration: none; } a:hover { text-decoration: underline; } /style>/head>body>h1>A2A & MCP Security Integration Demo/h1>div classnote> strong>🌐 Live Demo Available!/strong> p>Explore the deployed live demo:/p> p>code>https://vishalmysore-a2amcpdemo.hf.space/.well-known/agent.json/code>/p>/div>div classcontainer> h2>🛠️ What is a2ajava?/h2> p> strong>a2ajava/strong> is a powerfull agentic sdk, which is swiss knife to build agentic applicaiton , annotation-based Java library built to implement Agent-to-Agent (A2A) protocol and also strong>Model Context Protocol (MCP)/strong>. It enables the exposure of secure, semantically described agents over JSON-RPC with minimal configuration. br> You can see the project a2ajava a hrefhttps://github.com/vishalmysore/a2ajava> here /a> /p> ul> li>✅ Simple to integrate in Spring Boot or standalone Java apps/li> li>✅ Supports tool listing and dynamic invocation via JSON-RPC/li> li>✅ Enables role-based filtering using annotations like code>@PreAuthorize/code>/li> li>✅ Auto-generates agent manifests compliant with OpenAI Tool/Function Calling and Claude Tool Use/li> li>✅ Powerful when combined with AI orchestration tools like strong>OpenAI, Claude, Grok/strong>/li> /ul> p> It bridges the gap between Java backend services and AI agents needing structured capability descriptions. /p>/div>div classcontainer> h2>🚀 Test the Demo/h2> p>Run these code>curl/code> commands to explore dynamic access control using A2A + MCP + Security:/p> h3>1. 🔍 Agent Discovery/h3> h4>USER Role/h4> pre>curl -u user:password https://vishalmysore-a2amcpdemo.hf.space/.well-known/agent.json/pre> p>Returns a list of user-accessible tools like booking cars or checking status./p> h4>ADMIN Role/h4> pre>curl -u admin:admin https://vishalmysore-a2amcpdemo.hf.space/.well-known/agent.json/pre> p>Includes advanced capabilities like canceling bookings or scheduling maintenance./p> h4>Anonymous Access/h4> pre>curl https://vishalmysore-a2amcpdemo.hf.space/.well-known/agent.json/pre> p>Returns only tools publicly exposed without login./p> h3>2. 🔧 List Tools/h3> h4>Unauthenticated/h4> pre>curl -H Content-Type: application/json -d {jsonrpc:2.0,method:tools/list,params:{},id:9} https://vishalmysore-a2amcpdemo.hf.space//pre> h4>With USER Role/h4> pre>curl -u user:password -H Content-Type: application/json -d {jsonrpc:2.0,method:tools/list,params:{},id:9} https://vishalmysore-a2amcpdemo.hf.space//pre> h4>With ADMIN Role/h4> pre>curl -u admin:admin -H Content-Type: application/json -d {jsonrpc:2.0,method:tools/list,params:{},id:9} https://vishalmysore-a2amcpdemo.hf.space//pre> h3>3. ⚙️ Tool Execution/h3> h4>Cancel Booking (ADMIN)/h4> pre>curl -u admin:admin -H Content-Type: application/json \-d { jsonrpc: 2.0, method: tools/call, params: { name: cancelCarBooking, arguments: { provideAllValuesInPlainEnglish: { arg0: 2233 } } }, id: 25} \https://vishalmysore-a2amcpdemo.hf.space//pre> h4>Book Car (USER)/h4> pre>curl -u user:password -H Content-Type: application/json \-d {jsonrpc:2.0,method:tools/call,params:{name:bookCar,arguments:{provideAllValuesInPlainEnglish:{arg0:sedan,arg1:toronto,arg2:vancouver}}},id:1} \https://vishalmysore-a2amcpdemo.hf.space//pre>/div>div classcontainer> h2>🔐 Features Demonstrated/h2> ul> li>strong>Role-based access control/strong> using Spring Security/li> li>strong>@PreAuthorize/strong> annotations control tool visibility and execution/li> li>strong>Dynamic agent.json/strong> generation per user role/li> li>strong>a2ajava/strong> framework simplifies exposing secure tools/li> li>strong>Cross-language support/strong> (Python/Java clients)/li> li>strong>Deploy anywhere/strong>: HF Space, Render, or your own server/li> /ul>/div>div classcontainer> h2>📚 Learn More/h2> p>Explore the full source code, setup instructions, and more at:/p> p>a hrefhttps://github.com/vishalmysore/a2a-mcp-with-security target_blank>GitHub Repository: a2a-mcp-with-security/a>/p>/div>/body>/html>
Subdomains
Date
Domain
IP
memex-in-wainsfwillustrious-v110.hf.space
2025-09-30
44.219.145.144
allknowingroger-image-models-test190.hf.space
2025-02-18
52.55.55.177
hysts-controlnet-v1-1.hf.space
2025-02-18
3.215.212.165
stabilityai-stable-diffusion-1.hf.space
2025-02-16
35.174.94.150
kazuk-youtube-whisper-01.hf.space
2025-03-02
18.209.154.186
minimaxai-minimax-m1.hf.space
2025-09-17
52.201.90.248
sakanaai-llama-3-karamaru-v1.hf.space
2025-09-30
44.219.145.144
mistral-7b-instruct-v0-2.hf.space
2025-09-21
18.233.176.84
fffiloni-clip-interrogator-2.hf.space
2025-09-26
54.145.224.52
heartsync-nsfw-uncensored-video2.hf.space
2025-09-30
3.221.99.236
videocrafter-videocrafter2.hf.space
2025-09-28
3.221.99.236
ehristoforu-dalle-3-xl-lora-v2.hf.space
2025-09-30
3.221.99.236
gradio-space-api-fetcher-v2.hf.space
2025-02-12
34.237.237.210
tencentarc-photomaker-v2.hf.space
2025-09-30
44.219.145.144
vision-cair-minigpt-v2.hf.space
2025-09-26
54.145.224.52
bluskyyy-33f23f3f-3.hf.space
2025-09-30
54.145.224.52
dromerosm-groq-llama3.hf.space
2025-09-23
3.221.99.236
lixin4ever-videorefer-videollama3.hf.space
2025-09-14
34.206.241.91
iashin-yolov3.hf.space
2025-09-30
54.145.224.52
gradio-hello-world-4.hf.space
2025-09-25
3.221.99.236
abidlabs-trackio-1234.hf.space
2025-09-28
3.221.99.236
allknowingroger-image-models-test94.hf.space
2025-02-17
98.85.138.39
vision-cair-minigpt4.hf.space
2025-09-26
3.221.99.236
ysharma-chatgpt4.hf.space
2025-02-13
52.3.84.195
playgroundai-playground-v2-5.hf.space
2025-08-29
3.214.53.138
mrfakename-sync-f5.hf.space
2025-09-22
18.233.176.84
jpgallegoar-spanish-f5.hf.space
2025-09-26
3.221.99.236
flagrantia-character-select-saa.hf.space
2025-09-30
3.221.99.236
fabiogra-moseca.hf.space
2025-09-21
34.225.178.167
canstralian-bigcode-starcoder2-3b.hf.space
2025-09-30
3.221.99.236
starcoder-15b.hf.space
2025-08-20
54.208.116.228
nari-labs-dia-1-6b.hf.space
2025-09-19
34.197.61.212
aidc-ai-ovis2-16b.hf.space
2025-09-10
3.214.53.138
nous-hermes-2-mistral-7b.hf.space
2025-08-30
3.214.53.138
motherduckdb-duckdb-nsql-7b.hf.space
2025-09-30
54.145.224.52
gradio-map-airbnb.hf.space
2025-09-22
34.196.172.139
algoworks-image-face-upscale-restoration-gfpgan-pub.hf.space
2025-02-09
44.215.187.175
bga-spacio-v1pub.hf.space
2025-09-26
3.221.99.236
jordielebowen-train-flux-lora-ease-public.hf.space
2025-09-30
54.145.224.52
kkazahra888-unfilteredai-nsfw-gen-v2.static.hf.space
2025-09-14
3.175.34.121
lalashechka-img2img-6.static.hf.space
2025-09-14
3.175.34.4
lalashechka-img2img-8.static.hf.space
2025-09-14
3.175.34.121
adobfile-mailakdenizedutrowaauthlogonspxreplacec-6524a2d.static.hf.space
2025-09-04
3.175.34.16
hesamation-primer-llm-embedding.static.hf.space
2025-07-25
3.175.34.16
habolt-gabriel-habolt-immobilier.static.hf.space
2025-09-14
3.175.34.16
niansuh-ps.static.hf.space
2025-09-16
3.175.34.121
ateeqq-mistral-7b-instruct-v0-2-chatbot.static.hf.space
2025-09-04
3.175.34.117
ilcve21-sparc3d.hf.space
2025-09-29
44.219.145.144
cavargas10-trellis-imagen3d.hf.space
2025-09-30
54.145.224.52
lightricks-ltx-video-distilled.hf.space
2025-08-17
34.225.229.167
nihalgazi-flux-pro-unlimited.hf.space
2025-09-06
3.214.53.138
multimodalart-ip-adapter-faceid.hf.space
2025-09-26
3.221.99.236
instantx-instantid.hf.space
2025-09-28
54.145.224.52
gradio-hello-world.hf.space
2025-09-26
54.145.224.52
cohereforai-c4ai-command.hf.space
2025-09-28
3.221.99.236
coherelabs-c4ai-command.hf.space
2025-09-30
44.219.145.144
ravenok-statosphere-backend.hf.space
2025-09-30
54.145.224.52
codellama-codellama-playground.hf.space
2025-02-09
34.237.237.210
huggingface-inference-playground.hf.space
2025-09-21
18.233.176.84
openevals-find-a-leaderboard.hf.space
2025-08-26
3.232.180.39
lmarena-ai-chatbot-arena-leaderboard.hf.space
2025-09-23
3.221.99.236
lmsys-chatbot-arena-leaderboard.hf.space
2025-02-12
3.222.39.245
mteb-leaderboard.hf.space
2025-02-10
44.215.187.175
optimum-llm-perf-leaderboard.hf.space
2025-09-27
54.145.224.52
huggingfaceh4-open-llm-leaderboard.hf.space
2025-02-12
3.222.39.245
open-llm-leaderboard-open-llm-leaderboard.hf.space
2025-09-26
44.219.145.144
opencompass-open-vlm-leaderboard.hf.space
2025-09-26
44.219.145.144
opencompass-openvlm-video-leaderboard.hf.space
2025-09-30
54.145.224.52
hf-audio-open-asr-leaderboard.hf.space
2025-09-30
54.145.224.52
bigcode-bigcode-models-leaderboard.hf.space
2025-09-26
3.221.99.236
galileo-ai-agent-leaderboard.hf.space
2025-09-22
18.233.176.84
ai-secure-llm-trustworthy-leaderboard.hf.space
2025-09-26
3.221.99.236
markovidrih-image-manipulation-face.hf.space
2025-02-11
34.237.237.210
hilley-chattts-openvoice.hf.space
2025-08-24
54.208.116.228
mj665-stox-sight-ml-service.hf.space
2025-09-30
3.221.99.236
resembleai-resemble-enhance.hf.space
2025-09-30
44.219.145.144
lbmodels-noisereduce.hf.space
2025-09-30
3.221.99.236
oup-ai-lab-qa-with-image.hf.space
2025-02-17
3.220.39.102
adrek-text-to-image.hf.space
2025-09-04
3.214.53.138
hf-accelerate-model-memory-usage.hf.space
2025-09-16
44.219.132.240
pseudolab-huggingface-korea-theme.hf.space
2025-02-17
98.85.138.39
docs4you-tre.hf.space
2025-09-21
18.233.176.84
circl-vulnerability-severity-classification-roberta-base.hf.space
2025-08-31
3.214.53.138
littletest-sorryplease.hf.space
2025-09-25
54.145.224.52
mouseland-cellpose.hf.space
2025-09-30
44.219.145.144
breezedeus-cnocr-demo-private.hf.space
2025-09-26
54.145.224.52
cvlab-zero123-live.hf.space
2025-09-22
18.233.176.84
dylanebert-igf.hf.space
2025-02-10
44.215.187.175
limcheekin-yarn-mistral-7b-128k-gguf.hf.space
2025-02-09
34.237.237.210
course-demos-remove-bg.hf.space
2025-09-26
54.145.224.52
rogerxavier-static-config.hf.space
2025-09-30
54.145.224.52
multimodalart-self-forcing.hf.space
2025-09-26
54.145.224.52
innoai-edge-tts-text-to-speech.hf.space
2025-08-21
52.202.40.84
lmsys-mt-bench.hf.space
2025-02-09
44.215.187.175
felladrin-minisearch.hf.space
2025-09-30
54.145.224.52
tencentarc-instantmesh.hf.space
2025-08-26
54.208.116.228
shariqfarooq-zoedepth.hf.space
2025-09-07
52.86.163.242
devquasar-trashcanai.hf.space
2025-09-30
54.145.224.52
emerging-tech-goalsai.hf.space
2025-09-30
44.219.145.144
jamesliu1217-easycontrol-ghibli.hf.space
2025-09-30
44.219.145.144
api.hf.space
2025-02-20
3.215.212.165
tensorus-api.hf.space
2025-09-30
54.145.224.52
thestinger-uvr5-ui.hf.space
2025-09-02
3.214.53.138
falcon-completions-r44ui.hf.space
2025-08-23
52.202.40.84
oitsminez-rvc-v2-webui.hf.space
2025-09-29
54.145.224.52
aadnk-faster-whisper-webui.hf.space
2025-09-30
54.145.224.52
vishalmysore-mock.hf.space
2025-09-30
44.219.145.144
faceonlive-face-recognition-sdk.hf.space
2025-02-17
52.0.30.169
suno-bark.hf.space
2025-02-12
3.222.39.245
microsoft-phi-4-multimodal.hf.space
2025-09-29
54.145.224.52
makiai-gradio-mcp-minimal.hf.space
2025-09-30
44.219.145.144
not-lain-background-removal.hf.space
2025-09-04
3.214.53.138
radames-real-time-latent-consistency-model.hf.space
2025-02-13
3.222.39.245
deepseek-ai-deepseek-vl2-small.hf.space
2025-09-30
54.145.224.52
black-forest-labs-flux-1-schnell.hf.space
2025-09-26
54.145.224.52
huggingfacem4-screenshot2html.hf.space
2025-09-27
54.145.224.52
prodia-sdxl-stable-diffusion-xl.hf.space
2025-02-14
52.55.55.177
openskyml-fast-sdxl-stable-diffusion-xl.hf.space
2025-03-08
54.209.103.164
google-sdxl.hf.space
2025-02-12
3.222.39.245
3daigc-lhm.hf.space
2025-09-13
44.219.132.240
vokturz-can-it-run-llm.hf.space
2025-02-08
3.222.39.245
alexnasa-chain-of-zoom.hf.space
2025-09-30
54.145.224.52
rphrp1985-stable-diffusion-3-medium.hf.space
2025-09-25
44.219.145.144
gradio-fake-gan.hf.space
2025-09-04
44.219.8.222
clem-image-face-upscale-restoration-gfpgan.hf.space
2025-09-26
54.145.224.52
pseudolab-schoolrecord-gen.hf.space
2025-02-12
3.222.39.245
andrewstalin-youtube-comments-gen.hf.space
2025-09-20
18.233.176.84
r3gm-aicovergen.hf.space
2025-02-17
3.215.212.165
ngoctuanai-copiloten.hf.space
2025-09-28
3.221.99.236
fastrtc-turn-server-login.hf.space
2025-09-21
34.225.178.167
ivanmeyer-icon.hf.space
2025-09-27
44.219.145.144
clebersla-rvc-v2-huggingface-version.hf.space
2025-02-16
3.221.245.176
segmind-segmind-stable-diffusion.hf.space
2025-09-26
44.219.145.144
stabilityai-stable-diffusion.hf.space
2025-02-15
52.3.84.195
gustavosta-magicprompt-stable-diffusion.hf.space
2025-02-16
35.174.94.150
multimodalart-stable-video-diffusion.hf.space
2025-09-27
54.145.224.52
ap123-illusiondiffusion.hf.space
2025-02-10
34.237.237.210
levihsu-ootdiffusion.hf.space
2025-09-26
54.145.224.52
course-demos-speech-to-speech-translation.hf.space
2025-02-13
52.3.84.195
modelscope-old-photo-restoration.hf.space
2025-09-21
18.233.176.84
tonyassi-image-segmentation.hf.space
2025-02-13
34.237.237.210
veb-101-uwmgi-medical-image-segmentation.hf.space
2025-02-13
44.220.97.6
kahraman42-animal-species-detection.hf.space
2025-02-10
34.237.237.210
fffiloni-image2sfx-comparison.hf.space
2025-09-27
54.145.224.52
bhaskartripathi-pdfgpt-turbo.hf.space
2025-02-16
35.174.94.150
yuntian-deng-chatgpt4turbo.hf.space
2025-02-24
52.54.116.144
orderlymirror-text-to-video.hf.space
2025-09-30
3.221.99.236
wrdias-comfyui-advanced-video2video.hf.space
2025-09-19
34.225.178.167
andzhk-pnginfo.hf.space
2025-02-14
52.3.84.195
vishalmysore-a2amcpmongo.hf.space
2025-09-30
3.221.99.236
gradio-chatinterface-streaming-echo.hf.space
2025-09-26
3.221.99.236
kargaranamir-selenium-screenshot-gradio.hf.space
2025-09-30
44.219.145.144
wushuang98-direct3d-s2-v1-0-demo.hf.space
2025-09-04
44.219.8.222
qwen-qwen3-demo.hf.space
2025-09-30
44.219.145.144
qwen-qwen2-5-omni-7b-demo.hf.space
2025-09-30
3.221.99.236
stevhliu-gradio-pipeline-demo.hf.space
2025-09-30
3.221.99.236
paddlepaddle-ernie-x1-turbo-demo.hf.space
2025-09-30
3.221.99.236
resembleai-chatterbox-tts-demo.hf.space
2025-09-30
44.219.145.144
qwen-qwen2-5-max-demo.hf.space
2025-08-20
54.208.116.228
vishalmysore-a2amcpdemo.hf.space
2025-09-30
54.145.224.52
multichem-pd-mlb-dfs-roo.hf.space
2025-09-22
34.225.178.167
kerimmkirac-vavoo.hf.space
2025-09-21
34.225.178.167
alibaba-pai-easyphoto.hf.space
2025-02-12
34.237.237.210
llmhacker-realtime-flux-modified-flux-schnell-for-ja-p.hf.space
2025-09-30
3.221.99.236
felixrosberg-face-swap.hf.space
2025-09-30
3.221.99.236
tonyassi-face-swap.hf.space
2025-02-14
52.3.84.195
coxapi-faceswap.hf.space
2025-09-21
18.233.176.84
pminervini-tmp.hf.space
2025-02-12
34.237.237.210
redradios-f5-tts-sp.hf.space
2025-09-30
54.145.224.52
sumit7864-image-enhancer.hf.space
2025-02-17
3.215.212.165
mdnestor-media-downloader.hf.space
2025-09-30
54.145.224.52
multichem-pd-dfs-portfolio-manager.hf.space
2025-09-06
3.214.53.138
yuqi-gender-classifier.hf.space
2025-02-14
52.3.84.195
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]