NVIDIA NIM MCP Server
Enables local task execution using the user's NVIDIA NIM API quota, with tools to process file contents through LLMs, send chat prompts, and list available models.
README
NVIDIA NIM MCP Server Guide
This guide describes the custom Model Context Protocol (MCP) server configured to execute local tasks using the user's NVIDIA NIM API quota.
🗄️ File Locations
- MCP Server Implementation: [server.js](file:///C:/Users/kanna/nvidia-nim-mcp/server.js)
- MCP Config Registration: [mcp_config.json](file:///C:/Users/kanna/.gemini/antigravity-cli/mcp_config.json)
- MCP Local Schema Directory: [nvidia-nim/](file:///C:/Users/kanna/.gemini/antigravity-cli/mcp/nvidia-nim/)
- [nim_run_file.json](file:///C:/Users/kanna/.gemini/antigravity-cli/mcp/nvidia-nim/nim_run_file.json)
- [nim_chat.json](file:///C:/Users/kanna/.gemini/antigravity-cli/mcp/nvidia-nim/nim_chat.json)
- [nim_list_models.json](file:///C:/Users/kanna/.gemini/antigravity-cli/mcp/nvidia-nim/nim_list_models.json)
🛠️ Available Tools & Schema
1. nim_run_file
Send a file's content to a NIM LLM with processing instructions, writing output directly to the filesystem.
- Arguments:
inputFile(string, required): Absolute path to the source code or text file.outputFile(string, required): Absolute path where the processed result should be written.instruction(string, required): Prompt telling the model what to do with the file content.model(string, optional): Model ID to use. Defaults tometa/llama-3.3-70b-instruct.systemPrompt(string, optional): Optional system prompt to instruct the model.
2. nim_chat
Send a direct prompt query to a NIM LLM model.
- Arguments:
prompt(string, required): Prompt string.model(string, optional): Model ID. Defaults tometa/llama-3.3-70b-instruct.systemPrompt(string, optional): Optional system prompt.
3. nim_list_models
Queries the NGC endpoint and returns all available model IDs.
- Arguments: None.
💡 Token-Saving Guidelines for Agents
To optimize token usage in our conversation window:
- Do not pass raw file content to the model in standard prompts.
- Instead, use
nim_run_fileand supply theinputFileandoutputFilepaths. - This offloads the entire payload extraction and output generation directly to the NIM API, keeping our chat history clean of huge text blocks.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.