Content
# mcp
This is a practice repository for implementing an MCP (Model Context Protocol) server. You can use `modelcontextprotocol/inspector` at the project root to try various things.
## mcp-time-server
This is an MCP server that returns the current time. You can test it with:
`npx @modelcontextprotocol/inspector --config ./config.json --server current-time`.
## mcp-concat-file-finder
This is an MCP server that combines files from a specified directory and returns them. You can test it with:
`npx @modelcontextprotocol/inspector --config ./config.json --server file-finder`.
You need to specify environment variables in the inspector's configuration file:
- Specify the project root
ex) "ROOT_DIR": "./test",
- Specify the path to the file that defines the endpoint name, description for the LLM (Large Language Model), the directory to scan, and the file pattern to match
ex) "CONFIG_PATH": "./finder-config.json".
By specifying parameters in the file that defines the endpoint name, description for the LLM, the directory to scan, and the file pattern to match, you can create custom tools endpoints.
- name
This is the endpoint name.
- description
This is the description of the endpoint for the LLM. Please write it in a way that makes it easy to decide whether to use it.
- dir
This is the directory to scan. Please specify the relative path from the root.
- path_pattern
The pattern matching uses "github.com/bmatcuk/doublestar/v4". Feel free to use pattern matching as needed.
```
[
{
"name": "docs_query",
"description": "Retrieves information under .vscode. Use this when you need settings for vscode or similar.",
"dir": "./github-mcp-server/.vscode",
"path_pattern": "**"
},
{
"name": "e2e_code_query",
"description": "Loads source code files. This is the code for E2E tests.",
"dir": "./github-mcp-server/e2e",
"path_pattern": "**/*.go"
}
]
```
Connection Info
You Might Also Like
everything-claude-code
Complete Claude Code configuration collection - agents, skills, hooks,...
markitdown
MarkItDown-MCP is a lightweight server for converting URIs to Markdown.
firecrawl
Firecrawl MCP Server enables web scraping, crawling, and content extraction.
servers
Model Context Protocol Servers
servers
Model Context Protocol Servers
Time
A Model Context Protocol server for time and timezone conversions.