V Language MCP Server
Provides LLMs with comprehensive knowledge about the V programming language, including documentation access, code examples, standard library reference, and syntax explanations to help users learn and work with V.
README
V Language MCP Server
A comprehensive Model Context Protocol (MCP) server that provides LLMs with extensive knowledge about the V programming language, including documentation, code examples, standard library reference, and syntax explanations.
Features
📚 Documentation Access
- Full V documentation: Access the complete V programming language documentation
- Section-specific queries: Get detailed information about specific language features
- Search functionality: Search through documentation for specific topics
💡 Code Examples
- Example browser: Browse through hundreds of V code examples
- Code retrieval: Get complete source code for any example
- Pattern search: Search through examples for specific coding patterns
🔧 Standard Library Reference
- Module listing: Browse all available V standard library modules
- Module details: Get comprehensive information about specific modules
- File listings: See what functions and types are available in each module
🎯 Syntax Explanations
- Feature explanations: Detailed explanations of V language features
- Code examples: Practical examples for each concept
- Quick reference: Fast access to common syntax patterns
🚀 Code Execution (Planned)
- Code validation: Check V code syntax and semantics
- Example execution: Run V examples and see their output
- Interactive learning: Learn by running and modifying code
Installation
Prerequisites
- Python 3.10+
- Access to the V language repository (this project should be run from within the V repo or with V_REPO_PATH configured)
Setup
-
Clone or navigate to the V repository
-
Navigate to the MCP server directory:
cd v-mcp-server -
Install dependencies:
pip install -r requirements.txt -
(Optional) Configure the V repository path:
export V_REPO_PATH="/path/to/v/repository"If not set, the server assumes it's running from within the V repository.
Usage
Starting the Server
STDIO Mode (Default)
python main.py
HTTP Mode
python main.py --transport http --host 127.0.0.1 --port 8000
SSE Mode
python main.py --transport sse --host 127.0.0.1 --port 8000
Available Tools
Documentation Tools
get_v_documentation([section])- Get V documentation, optionally for a specific sectionsearch_v_docs(query)- Search through V documentation for specific topics
Example Tools
list_v_examples()- List all available V code examplesget_v_example(name)- Get the complete source code for a specific examplesearch_v_examples(query)- Search through example code for patterns
Standard Library Tools
list_v_stdlib_modules()- List all V standard library modulesget_v_module_info(module_name)- Get detailed information about a specific module
Language Reference Tools
explain_v_syntax(feature)- Get detailed explanation of V language featuresget_v_quick_reference()- Get a quick reference guide for V basics
MCP Client Integration
Using with Claude Desktop
Add this to your Claude Desktop configuration:
{
"mcpServers": {
"v-language": {
"command": "python",
"args": ["/path/to/v-mcp-server/main.py"],
"env": {
"V_REPO_PATH": "/path/to/v/repository"
}
}
}
}
Using with Other MCP Clients
The server supports all standard MCP transports:
- STDIO: Best for local development and testing
- HTTP: Suitable for web applications and remote access
- SSE: Good for real-time applications
Examples
Getting Started with V
User: How do I get started with V programming?
Assistant: Let me help you get started with V programming. First, let me get the basic documentation overview.
[get_v_documentation] -> Returns overview of V documentation sections
Then let me get the quick reference guide to show you the basics.
[get_v_quick_reference] -> Returns quick reference with essential syntax
Finding Code Examples
User: Show me how to work with arrays in V
Assistant: I'll show you how arrays work in V by looking at examples and documentation.
[explain_v_syntax("arrays")] -> Returns detailed explanation of V arrays
Let me also find some practical examples.
[search_v_examples("array")] -> Returns examples that use arrays
Standard Library Exploration
User: What modules are available in V's standard library?
Assistant: Let me show you the available modules in V's standard library.
[list_v_stdlib_modules] -> Returns list of all stdlib modules
If you're interested in a specific module, I can provide more details.
[get_v_module_info("os")] -> Returns detailed info about the os module
Learning Specific Features
User: How do structs work in V?
Assistant: Let me explain V structs with examples.
[explain_v_syntax("structs")] -> Returns comprehensive explanation of structs
Let me also show you a practical example.
[get_v_example("struct")] -> Returns example code using structs
Configuration
Environment Variables
V_REPO_PATH: Path to the V language repository (defaults to parent directory)
Server Options
--transport: Transport protocol (stdio,http,sse)--host: Host address (for HTTP/SSE transports)--port: Port number (for HTTP/SSE transports)--path: URL path (for HTTP transport)
Architecture
The MCP server is built with the following components:
VDocumentationServer Class
- Handles file system operations within the V repository
- Caches documentation and example data for performance
- Provides search functionality across documentation and code
MCP Tools
Each tool corresponds to a specific functionality:
- Documentation tools: Access and search V language documentation
- Example tools: Browse and retrieve code examples
- Standard library tools: Explore V's standard library modules
- Syntax tools: Explain language features and provide quick reference
FastMCP Framework
Built on the FastMCP library, providing:
- Multiple transport support: STDIO, HTTP, SSE
- Type safety: Full type annotations and validation
- Performance: Efficient caching and search algorithms
- Extensibility: Easy to add new tools and features
Development
Adding New Tools
To add a new tool, create a function decorated with @mcp.tool:
@mcp.tool
def new_tool_name(param1: str, param2: int) -> str:
"""Tool description."""
# Implementation
return result
Extending Functionality
The server can be extended by:
- Adding new tools for specific V features
- Implementing code execution capabilities
- Adding integration with V's compiler
- Creating interactive tutorials
Testing
Run tests with pytest:
pytest tests/
License
MIT
Related Projects
- V Programming Language - The main V language repository
- FastMCP - The MCP framework used by this server
- v-analyzer - V language server for IDE support
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。